artofscience / artofscience/SAOR
Approximated approximations
- Dominant language
- Python
- Stars
- 5
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
We can currently do:
intvar = MixedIntervening(problem.n, problem.m + 1, default=Linear())
intvar.set_intervening(MMA(), var=1)
approx = Taylor1(intvar)
subproblem = Subproblem(approx)
To make the approximated approximations we "only" need to do:
intvar = MixedIntervening(problem.n, problem.m + 1, default=Linear())
intvar.set_intervening(MMA(), var=1)
approx = Taylor1(intvar)
approx_of_approx = Taylor2(approx)
subproblem = Subproblem(approx_of_approx))
This means we need to make Approximation accept Approximation.
How can we do this?
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.