1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef POICARE_EXPRESSION_DEBUG_H #define POICARE_EXPRESSION_DEBUG_H #include <poincare/expression.h> #include <poincare/integer.h> namespace Poincare { void print_expression(const Expression * e, int indentationLevel = 0); void print_prime_factorization(Integer * outputFactors, Integer * outputCoefficients, int outputLength); } #endif // POICARE_EXPRESSION_DEBUG_H