artofscience / artofscience/SAOR

Approximated approximations

Open
#122 2 comments 0 reactions 4 assignees Claimed by @artofscience View on GitHub
enhancement help wanted paper urgent for subtle reasons verification
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.