Skip to content

openturns/ev3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image

Ev3

Ev3 is a C++ library for symbolic computation written by Leo Liberti.

It is an alternative to libmatheval.

It was originally published by Leo Liberti under the CPL license.

The Computational Infrastructure for Operations Research project (COIN-OR) uses a modified version in ROSE.

Leo Liberti has since republished the original Ev3 under the LGPL license (see COPYING and COPYING.LESSER).

This repository stores the version used in the OpenTURNS software also published under the LGPL. It contains bug fixes made between 2015 and 2019.

Here is a snippet which defines two variables and differentiates an expression:

#include <iostream>
#include "expression.h"
#include "parser.h"

int main()
{  
  Ev3::ExpressionParser parser;
  parser.SetVariableID("x1", 0);
  parser.SetVariableID("x2", 1);
  int nerr = 0;
  Ev3::Expression expr = parser.Parse("x1*sin(x2)", nerr);
  Ev3::Expression derivative = Ev3::Diff(expr, 1);
  std::cout << derivative->ToString() << std::endl;
}

About

C++ library to compute symbolic derivatives

Resources

License

LGPL-3.0, GPL-3.0 licenses found

Licenses found

LGPL-3.0
COPYING.LESSER
GPL-3.0
COPYING

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published