AlgForm typedef

AlgForm = List<AlgTerm>

The algebracal form storing the expression of a varset.

A form is an algebra expression whose all items have same orders. Operators of Varset guarantee the results are forms.

List wrapping is form[term[tag]]].

See also:

  • Varset, which uses a form to store its expression.

Implementation

typedef AlgForm = List<AlgTerm>;