Skip to content

polytronicgr/SymbolicEval

 
 

Repository files navigation

SymbolicEval

A tree-based symbolic evaluating program, with a Windows and an Android UI.

How to use it

Scanner scan = new Scanner(theTextInputYouWant);
Parser parser = new Parser(scan);
try
{
    Tree t = parser.Parse();
    output = t.Print();
    var steps = t.Simplify();
    foreach (var step in steps)
    {
      output += "\n=" + step;
    }
} catch (Exception)
{
    output = "ERROR";
}

About

A tree-based *symbolic* calculator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%