We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you look at a model, there are variables that are not dependent on the model point.
For example, in the basic term, the model starts with:
@variable() def duration(t): return t//12 @variable() def inflation_factor(t): return (1 + assumption["inflation_rate"])**(t/12) @variable() def age(t): return main.get("age_at_entry") + duration(t) ...
From these 3 variables, duration and inflation_factor don't differ between model points so we could calculate it only once.
So generally speaking all variables that don't depend on model points data can be calculate only once.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you look at a model, there are variables that are not dependent on the model point.
For example, in the basic term, the model starts with:
From these 3 variables, duration and inflation_factor don't differ between model points so we could calculate it only once.
So generally speaking all variables that don't depend on model points data can be calculate only once.
The text was updated successfully, but these errors were encountered: