Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 473 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 473 Bytes

Unlogic

A math JIT compiler and graph generator.

Examples

JIT-Compiling and Running a Function

unlogic::Scene scene;
unlogic::Compiler compiler({&unlogic::stdlib, &unlogic::runtime});
auto program = *compiler.Compile("given f(x) := x^2; plot f;");

program(&scene);

Calculator

Use unlogic-calculator, a Qt/Vulkan-based GUI for unlogic to perform graph analysis.