use of com.sri.ai.expresso.autodifferentiation.AutomaticDifferentiation in project aic-expresso by aic-sri-international.
the class AutomaticDifferentiationTest method makeAutoDifferentiator.
@Before
public void makeAutoDifferentiator() {
Theory theory = new CommonTheory();
Context context = new TrueContext(theory);
autoDifferentiator = new AutomaticDifferentiation(e -> context.evaluate(e));
}
Aggregations