mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 22:00:28 +01:00
12 lines
482 B
C
12 lines
482 B
C
#ifndef POINCARE_TEST_SIMPLIFY_UTILS_H
|
|
#define POINCARE_TEST_SIMPLIFY_UTILS_H
|
|
|
|
/* Tests that the first expression simplifies to the second. */
|
|
bool simplifies_to(const char * input_string, const char * expected_string);
|
|
|
|
/* Tests that the first expression is identical to the second. */
|
|
bool identical_to(const char * input_string, const char * expected_string);
|
|
bool equivalent_to(const char * input_string, const char * expected_string);
|
|
|
|
#endif // POINCARE_TEST_SIMPLIFY_UTILS_H
|