Click here to Skip to main content
15,868,016 members
Articles / Programming Languages / C#
Article

Evaluating Mathematical Expressions by Compiling C# Code at Runtime

Rate me:
Please Sign up or sign in to vote.
4.70/5 (50 votes)
21 Apr 20032 min read 218.7K   81   23
A completely new way of making a mathematical expression evaluator.

Introduction

There are many articles on creating mathematical expression parsers (i.e. for displaying 3D functions where user inputs the formulas manually). Most of them are based on lexical analysis, grammar definitions etc. With C# there is a solution for making mathematical expression evaluator in a completely new way: by compiling code at runtime.

Let's assume that we want to create an application that would calculate 3D function like that:

z = f(x,y)

But we want to let the user input function formula manually (we don't know what the formula will look like).

A solution to deal with that task in 10 minutes is:

  1. Let the user input the function
  2. Compile that function into memory
  3. Run the function with given x and y
  4. Do something with result z value


To do that in a couple of minutes we would need a class with virtual method:

C#
namespace MathEval<BR>{<BR> public class MyClassBase<BR> {<BR>  public MyClassBase()<BR>  {<BR>  }<BR>  public virtual double eval(double x,double y)<BR>  {<BR>   return 0.0;<BR>  }<BR> }<BR>}<BR>

all we need more is a parser/evaluator class which would compile function body into assembly (created in memory) and calculate function result:

C#
<BR>using System;<BR>using System.Reflection;<BR>using System.Windows.Forms;<BR>namespace MathEval<BR>{<BR> public class MathExpressionParser<BR> {<BR>  MyClassBase myobj = null;<BR>  public MathExpressionParser()<BR>  {<BR>  }<BR>  public bool init(string expr)<BR>  {<BR>   Microsoft.CSharp.CSharpCodeProvider cp<BR>                                = new Microsoft.CSharp.CSharpCodeProvider();<BR>   System.CodeDom.Compiler.ICodeCompiler ic = cp.CreateCompiler();<BR>   System.CodeDom.Compiler.CompilerParameters cpar<BR>                         = new System.CodeDom.Compiler.CompilerParameters();<BR>   cpar.GenerateInMemory = true;<BR>   cpar.GenerateExecutable = false;<BR>   cpar.ReferencedAssemblies.Add("system.dll");<BR>   cpar.ReferencedAssemblies.Add("matheval.exe"); <BR>   string src = "using System;"+<BR>    "class myclass:MathEval.MyClassBase" + <BR>    "{"+<BR>    "public myclass(){}"+<BR>    "public override double eval(double x,double y)"+<BR>    "{"+<BR>    "return "+ expr +";"+<BR>    "}"+<BR>    "}";<BR>   System.CodeDom.Compiler.CompilerResults cr<BR>                                   = ic.CompileAssemblyFromSource(cpar,src);<BR>   foreach (System.CodeDom.Compiler.CompilerError ce in cr.Errors)<BR>    MessageBox.Show(ce.ErrorText); <BR><BR>   if (cr.Errors.Count == 0 && cr.CompiledAssembly != null)<BR>   {<BR>    Type ObjType = cr.CompiledAssembly.GetType("myclass");<BR>    try<BR>    {<BR>     if (ObjType != null)<BR>     {<BR>      myobj = (MyClassBase)Activator.CreateInstance(ObjType);<BR>     }<BR>    }<BR>    catch (Exception ex)<BR>    {<BR>     MessageBox.Show(ex.Message);<BR>    }<BR>    return true;<BR>   }<BR>   else <BR>    return false;<BR>  }<BR>  public double eval(double x,double y)<BR>  {<BR>   double val = 0.0;<BR>   if (myobj != null)<BR>   {<BR>     val = myobj.eval(x,y);<BR>   }<BR>   return val;<BR>  }<BR> }<BR>}<BR>

Take a look at the init() method. All we need it to do is to create an assembly(in memory) with a class "myclass" derived from MyBaseClass. Note that "eval" method contains the formula given by the user at runtime. Also note that cpar.ReferencedAssemblies.Add("matheval.exe"); defines a reference to the application currently being created.
Then we can call myclass.eval method as many times as we want to:

C#
<BR>MathExpressionParser mp = new MathExpressionParser();<BR>mp.init("Math.Sin(x)*y");<BR><BR><BR>for(int i=0;i<1000000;i++)<BR>{<BR> mp.eval((double)i,(double)i);<BR>}<BR>

Compiled code is of course much faster than any other solution used to parse and evaluate expressions.

A few things to do:

  • Let the user input formulas as "xy*sin(x+y)" or "x^2+y^2" and convert them to c# "x*y*Math.Sin(x+y)" "x*x + y*y" etc...
  • Do some error checking/handling other than compiler errors.
  • Freeing and recreating the in-memory-assembly with another formula.
  • Enjoy the code :)

PS: special thanks to AcidRain for some ideas :)

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect
Poland Poland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow to unload an assembly? Pin
Member 21683830-Jul-03 10:48
Member 21683830-Jul-03 10:48 
AnswerRe: How to unload an assembly? Pin
tuxic7-Mar-05 9:01
tuxic7-Mar-05 9:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.