forked from wdas/SeExpr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
47 lines (37 loc) · 1.19 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
===================================================================
SeExr - An embeddable expression evaluation engine
===================================================================
Super impatient CMake building and installing guide
===================================================
$ git clone https://github.com/wdas/SeExpr
$ cd SeExpr
$ mkdir build
$ cd build
$ cmake ../
$ make doc # optional make documentation
$ make install
You can try the test application asciiGraph which is a simple
function grapher... e.g.
./asciiGraph "x^3-8*x"
Getting started
---------------
Examining the demo applications in src/demo is a great way to see
some usage examples of the library. The basic strategy is to subclass
the SeExpression class and implement the methods that describe what
extra functions and variables your expression evaluation will need
Be sure to check out the doxygen pages for an API overview.
Source code overview
====================
src/
SeExpr/ Library code
demos/ Demo Applications
tests/ Regression Tests
doc/ Doxygen generation
SeExpr Developers
=================
Brent Burley
Lawrence Chai
Andrew Selle
Dan Teece
Tom Thompson
Walt Disney Animation Studios