new Guide("a3", "+/ adj1 adj2 adj2"), // a3 = (100 + 200) / 200
new Guide("a4", "?: adj3 adj1 adj2"), // a4 = adj3 > 0 ? adj1 : adj2
new Guide("a5", "abs -2"),
};
CustomGeometry geom = new CustomGeometry(CTCustomGeometry2D.Factory.newInstance());
Context ctx = new Context(geom, null, null);
for(Formula fmla : ops) {
ctx.evaluate(fmla);
}