prettyExpressions
A TermFormatter representing terms in a pretty way, i.e. by representing prefix, postfix, or infix expressions according to the provided OperatorSet. Variables may be represented either in a pretty way or through their raw representation, depending on the value of the prettyVariables.
So for instance, assuming an infix operator + is contained in operatorSet, the term A_1 + B_2 is would be represented as A + B, if prettyVariables is true, or A_1 + B_2 otherwise.
A TermFormatter representing terms in a pretty way, i.e. by representing prefix, postfix, or infix expressions according to the provided OperatorSet. Variables are represented in pretty way as well, similarly to what the formatter returned by prettyVariables does.
So for instance, assuming an infix operator + is contained in operatorSet, the term A_1 + B_2 is would be represented as A + B.
A TermFormatter representing terms in a pretty way, i.e. by representing prefix, postfix, or infix expressions according to the operators defined in OperatorSet.DEFAULT. Variables may be represented either in a pretty way or through their raw representation, depending on the value of the prettyVariables.
So for instance the term A_1 + B_2 is represented as A + B, if prettyVariables is true, or A_1 + B_2 otherwise.
A TermFormatter representing terms in a pretty way, i.e. by representing prefix, postfix, or infix expressions according to the operators defined in OperatorSet.DEFAULT. Variables are represented in pretty way as well, similarly to what the formatter returned by prettyVariables does.
So for instance the term A_1 + B_2 is represented as A + B.