Numworks Epsilon  1.4.1
Graphing Calculator Operating System
simplification_engine.h
Go to the documentation of this file.
1 #ifndef POINCARE_SIMPLIFICATION_ENGINE_H
2 #define POINCARE_SIMPLIFICATION_ENGINE_H
3 
4 #if MATRIX_EXACT_REDUCING
5 
6 #include <poincare/expression.h>
7 
8 namespace Poincare {
9 
10 class SimplificationEngine {
11 public:
12  static Expression * map(Expression * e, Context & context, Expression::AngleUnit angleUnit);
13 
14 };
15 
16 }
17 
18 #endif
19 
20 #endif