test-econ-model/fixed-simple.cpp

18 lines
239 B
C++
Raw Normal View History

2022-11-30 02:07:09 -08:00
#include<iostream>
#include<vector>
std::vector<int> balances;
const int N = 10000;
const int DURATION = 1000;
void frame_year() {
for (int i = 0; i < balances.size(); i++) {
// actions
}
}
int main() {
return 0;
}