test-econ-model/wealth-flow.cpp

21 lines
275 B
C++

#include<iostream>
#include<vector>
#include<cmath>
#include<cstdlib>
#include<algorithm>
std::vector<int> balances;
const int N = 10000;
const int DURATION = 1000;
void frame_year() {
for (int i = 0; i < balances.size(); i++) {
}
}
int main() {
return 0;
}