mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 22:00:28 +01:00
17 lines
406 B
C++
17 lines
406 B
C++
#include <quiz.h>
|
|
#include <poincare.h>
|
|
#include <assert.h>
|
|
|
|
QUIZ_CASE(poincare_simplify) {
|
|
//{
|
|
// Expression * e = Expression::parse("3*0");
|
|
// Expression * e2 = e->simplify();
|
|
// assert(e2->type() == Expression::Type::Integer);
|
|
//}
|
|
//{
|
|
// Expression * e = Expression::parse("0*foo");
|
|
// Expression * e2 = e->simplify();
|
|
// assert(e2->type() == Expression::Type::Integer);
|
|
//}
|
|
}
|