I'm trying to use Solver Foundation to solve a simple one variable minimization problem (C#), but I'm new to this library and am finding an easy example hard to find...
What I'm trying to do minimize using variable x:
MIN[const - method(x)], where method(x) is a method defined in the same class. I also have the option of replacing method(x) with an instance of some other class, which has a 'result given x' type method in it.
Is there a way to do that?
Thanks a lot