Variable: calc-simplify-mode

calc-simplify-mode is a variable defined in calc.el.gz.

Value

alg

Documentation

Type of simplification applied to results.

If none, results are not simplified when pushed on the stack. If num, functions are simplified only when args are constant. If nil, only limited simplifications are applied. If binary, math-clip is applied if appropriate. If alg, math-simplify is applied. If ext, math-simplify-extended is applied. If units, math-simplify-units is applied.

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc.el.gz
(defcalcmodevar calc-simplify-mode 'alg
  "Type of simplification applied to results.
If `none', results are not simplified when pushed on the stack.
If `num', functions are simplified only when args are constant.
If nil, only limited simplifications are applied.
If `binary', `math-clip' is applied if appropriate.
If `alg', `math-simplify' is applied.
If `ext', `math-simplify-extended' is applied.
If `units', `math-simplify-units' is applied.")