TODO 949 B

123456789101112131415161718192021222324252627
  1. # vim: set fileencoding=utf-8 :
  2. - Last possibilities reduce to a similar result.
  3. - ExpressionNode.equals() werkend maken voor alle cases (negatie).
  4. - Create unit tests for node inequivalence operator.
  5. - Line printer: 1 / (n + n)x -> 1 / (n + n) * x
  6. - Modules:
  7. + Equations with substitution
  8. + Gonio, no matches for sin(pi), sin(2pi), sin(4pi), etc...
  9. - Fix: int -cf(x) dx (caused infinite loop)
  10. Solution: remove baby steps that rewrites f(x) to f(x) ^ 1
  11. - Add backslash notation for special LaTeX symbols notation such as \pi?
  12. - Change integral representation in parser so that _ and ^ bounds are printed correctly by line printer.
  13. - Rewrite unit tests to use improved line printer syntax.
  14. - Add notation "1 1/3" for 'int with fraction' leafs, and rules to rewrite them to fractions and back.
  15. - frontend: replace 'dx' with '(dx)' with regex before sending to parser
  16. - "sin^2 x" is supported by parser, but not yet by line printer.