Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > 8a80864b07c5f16e9ba9be320c149cfa > files > 80

teyjus-1.0_b31-15mdk.i586.rpm

/*
 * Code for simplifying goals. Currently the only simplification is that
 * of removing trivial goals (truegoal) from larger goal expressions.
 */

module goalred.

accum_sig  goaltypes.

type    goalreduce      goal -> goal -> o.

goalreduce (andgoal truegoal Goal) OutGoal :-
  !, goalreduce Goal OutGoal.

goalreduce (andgoal Goal truegoal) OutGoal :-
  !, goalreduce Goal OutGoal.

goalreduce (allgoal T\ truegoal) truegoal :- !.

goalreduce Goal Goal.