5,427,303 members and growing! (19,170 online)
Email Password   helpLost your password?
General Programming » Algorithms & Recipes » General     Intermediate

Evaluating Mathematical Expressions by Compiling C# Code at Runtime

By Marcin Cuprjak (aka Vlad Tepes)

A completely new way of making a mathematical expression evaluator.
C#, Windows, .NET 1.0, .NET, Visual Studio, Dev

Posted: 21 Apr 2003
Updated: 21 Apr 2003
Views: 110,297
Bookmarked: 55 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
43 votes for this Article.
Popularity: 6.65 Rating: 4.07 out of 5
3 votes, 7.0%
1
1 vote, 2.3%
2
1 vote, 2.3%
3
8 votes, 18.6%
4
30 votes, 69.8%
5

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:

namespace MathEval
{
public class MyClassBase
{
public MyClassBase()
{
}
public virtual double eval(double x,double y)
{
return 0.0;
}
}
}

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


using System;
using System.Reflection;
using System.Windows.Forms;
namespace MathEval
{
public class MathExpressionParser
{
MyClassBase myobj = null;
public MathExpressionParser()
{
}
public bool init(string expr)
{
Microsoft.CSharp.CSharpCodeProvider cp
= new Microsoft.CSharp.CSharpCodeProvider();
System.CodeDom.Compiler.ICodeCompiler ic = cp.CreateCompiler();
System.CodeDom.Compiler.CompilerParameters cpar
= new System.CodeDom.Compiler.CompilerParameters();
cpar.GenerateInMemory = true;
cpar.GenerateExecutable = false;
cpar.ReferencedAssemblies.Add("system.dll");
cpar.ReferencedAssemblies.Add("matheval.exe");
string src = "using System;"+
"class myclass:MathEval.MyClassBase" +
"{"+
"public myclass(){}"+
"public override double eval(double x,double y)"+
"{"+
"return "+ expr +";"+
"}"+
"}";
System.CodeDom.Compiler.CompilerResults cr
= ic.CompileAssemblyFromSource(cpar,src);
foreach (System.CodeDom.Compiler.CompilerError ce in cr.Errors)
MessageBox.Show(ce.ErrorText);

if (cr.Errors.Count == 0 && cr.CompiledAssembly != null)
{
Type ObjType = cr.CompiledAssembly.GetType("myclass");
try
{
if (ObjType != null)
{
myobj = (MyClassBase)Activator.CreateInstance(ObjType);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
return true;
}
else
return false;
}
public double eval(double x,double y)
{
double val = 0.0;
if (myobj != null)
{
val = myobj.eval(x,y);
}
return val;
}
}
}

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:


MathExpressionParser mp = new MathExpressionParser();
mp.init("Math.Sin(x)*y");


for(int i=0;i<1000000;i++)
{
mp.eval((double)i,(double)i);
}

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

About the Author

Marcin Cuprjak (aka Vlad Tepes)



Occupation: Architect
Location: Poland Poland

Other popular Algorithms & Recipes articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 22 of 22 (Total in Forum: 22) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralCompletely New?memberDewey15:28 21 Jan '08  
GeneralRe: Completely New?memberMarcin Cuprjak (aka Vlad Tepes)10:33 23 Jan '08  
QuestionWhat is wrong with double FuncN (params double[] x) ?memberhreba4:40 22 Nov '06  
GeneralGood Work!membergajatko3:17 3 Oct '06  
GeneralNot applicable for ASP.NET2 applicationsmemberZuZuKin10:10 23 Feb '06  
GeneralVery Nicemembermsaroka13:48 20 Apr '05  
General"matheval.exe"memberxorenko1:11 17 Apr '05  
GeneralExtremely insecure!memberekolis16:59 14 Jun '04  
GeneralHow to unload an assembly?memberHeng Ma11:48 30 Jul '03  
GeneralRe: How to unload an assembly?membertuxic10:01 7 Mar '05  
GeneralWhat about Microsoft.JScript.Eval()?memberonc4:59 29 Apr '03  
GeneralGenerate IL directlymemberhsauro20:48 22 Apr '03  
GeneralRe: Generate IL directlymemberleppie8:02 23 Apr '03  
GeneralRe: Generate IL directlysussKris Vandermotten5:25 29 Apr '03  
GeneralCompiling In MemorymemberBlake Coverett17:26 22 Apr '03  
GeneralRe: Compiling In MemorymemberJonathan de Halleux0:02 23 Apr '03  
GeneralRe: Compiling In MemorymemberRama Krishna4:12 23 Apr '03  
GeneralRe: Compiling In Memorymemberleppie8:00 23 Apr '03  
GeneralRe: Compiling In MemorymemberRama Krishna8:06 23 Apr '03  
GeneralRe: Compiling In MemorymemberBlake Coverett17:48 23 Apr '03  
GeneralRe: Compiling In MemorymemberRama Krishna2:46 24 Apr '03  
GeneralRe: Compiling In MemorymemberBlake Coverett14:41 24 Apr '03  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 21 Apr 2003
Editor: Chris Maunder
Copyright 2003 by Marcin Cuprjak (aka Vlad Tepes)
Everything else Copyright © CodeProject, 1999-2008
Web19 | Advertise on the Code Project