DOKK / manpages / debian 10 / alliance / simpablexpr.3.en
SIMPABLEXPR(3) ABL FUNCTIONS SIMPABLEXPR(3)

simpablexpr - simplies an expression.

See the file buster/alliance/alc_origin.1.en.gz.

#include "abl101.h"
chain_list ∗simpablexpr( Expr )

chain_list ∗Expr;

Expression to simplfy.

simpablexpr simplifies Expr. The expression pointer Expr MUSTN'T be used after the call to this function.

simpablexpr returns a pointer to the simplied expression.

#include "abl101.h"

chain_list ∗Expr;
Expr = createablbinexpr( ABL_AND,
createablatom( "'0'" ),
createablatom( "'1'" ) );
Expr = simpablexpr( Expr );
/* displays '0' */
viewablexpr( Expr, ABL_VIEW_VHDL );

abl(1), simpdupablexpr(3).

See the file buster/alliance/alc_bug_report.1.en.gz.

October 1, 1997 ASIM/LIP6