This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/examples/symdiff/times2.lgt
pmoura 75392e54c7 Logtalk 2.15.0 release files.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@757 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2003-02-05 00:15:28 +00:00

75 lines
1.1 KiB
Plaintext

:- object(_ * _,
implements(symdiffp)).
:- info([
author is 'Paulo Moura',
version is 1.0,
date is 1999/12/29,
parnames is ['Expression1', 'Expression2'],
comment is 'Symbolic differentiation and simplification of */2 expressions.',
source is 'Example based on the Clocksin and Mellish Prolog book.']).
diff(Diff) :-
this(X * Y),
once(diff(X, Y, Diff)).
diff(I, J, 0) :-
integer(I),
integer(J).
diff(0, _, 0).
diff(_, 0, 0).
diff(X, J, J * DX) :-
integer(J),
X::diff(DX).
diff(I, Y, I * DY) :-
integer(I),
Y::diff(DY).
diff(X, Y, X * DY + DX * Y) :-
X::diff(DX),
Y::diff(DY).
simplify(S) :-
this(X * Y),
once(simplify(X, Y, S)).
simplify(I, J, S) :-
integer(I),
integer(J),
S is I * J.
simplify(0, _, 0).
simplify(_, 0, 0).
simplify(1, Y, SY) :-
Y::simplify(SY).
simplify(X, 1, SX) :-
X::simplify(SX).
simplify(I, Y, I * SY) :-
integer(I),
Y::simplify(SY).
simplify(X, J, J * SX) :-
integer(J),
X::simplify(SX).
simplify(X, Y, SX * SY) :-
X::simplify(SX),
Y::simplify(SY).
:- end_object.