Skip to content

Approximated approximations #122

@artofscience

Description

@artofscience

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?

Metadata

Metadata

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions