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.
polynomialmani.pl/polimani.pl

645 lines
16 KiB
Perl
Raw Normal View History

2018-11-17 23:53:49 +00:00
%% -*- mode: prolog-*-
2018-11-21 15:23:35 +00:00
%% vim: set softtabstop=4 shiftwidth=4 tabstop=4 expandtab:
2018-11-17 16:14:13 +00:00
2018-11-22 17:49:55 +00:00
/**
*
* polimani.pl
*
* Assignment 1 - Polynomial Manipulator
* Programming in Logic - DCC-FCUP
*
* Diogo Peralta Cordeiro
* up201705417@fc.up.pt
*
* Hugo David Cordeiro Sales
* up201704178@fc.up.pt
*
2018-11-22 17:49:55 +00:00
*********************************************
2018-11-22 17:49:55 +00:00
* Follows 'Coding guidelines for Prolog' *
* https://doi.org/10.1017/S1471068411000391 *
*********************************************
*/
2018-11-22 17:49:55 +00:00
/* Import the Constraint Logic Programming over Finite Domains lybrary
* Essentially, this library improves the way Prolog deals with integers,
* allowing more predicates to be reversible.
* For instance, number(N) is always false, which prevents the
* reversing of a predicate.
*/
2018-11-22 11:51:19 +00:00
:- use_module(library(clpfd)).
2018-11-23 14:56:01 +00:00
%% :- use_module(library(clpr)).
2018-11-22 11:51:19 +00:00
2018-11-22 18:04:45 +00:00
/*******************************
* USER INTERFACE *
*******************************/
/*
poly2list/2 transforms a list representing a polynomial (second
argument) into a polynomial represented as an expression (first argu-
ment) and vice-versa.
*/
poly2list(P, L) :-
polynomial_to_list(P, L).
2018-11-22 18:04:45 +00:00
/*
simpolylist/2 simplifies a polynomial represented as a list into
another polynomial as a list.
*/
simpoly_list(L, S) :-
simplify_polynomial_list(L, S).
/*
2018-11-22 18:34:23 +00:00
simpoly/2 simplifies a polynomial represented as an expression
2018-11-22 18:04:45 +00:00
as another polynomial as an expression.
*/
simpoly(P, S) :-
simplify_polynomial(P, S).
/*
scalepoly/3 multiplies a polynomial represented as an expression by a scalar
2018-11-22 18:04:45 +00:00
resulting in a second polynomial. The two first arguments are assumed to
be ground. The polynomial resulting from the sum is in simplified form.
*/
scalepoly(P1, P2, S) :-
scale_polynomial(P1, P2, S).
/*
2018-11-22 18:34:23 +00:00
addpoly/3 adds two polynomials as expressions resulting in a
2018-11-22 18:04:45 +00:00
third one. The two first arguments are assumed to be ground.
The polynomial resulting from the sum is in simplified form.
*/
addpoly(P1, P2, S) :-
add_polynomial(P1, P2, S).
2018-11-22 18:04:45 +00:00
/*******************************
* BACKEND *
*******************************/
%% polynomial_variable_list(-List) is det
2018-11-18 16:33:09 +00:00
%
% List of possible polynomial variables
%
2018-11-19 16:59:53 +00:00
polynomial_variable_list([x, y, z]).
2018-11-17 16:14:13 +00:00
2018-11-18 16:33:09 +00:00
%% polynomial_variable(?X:atom) is det
%
% Returns true if X is a polynomial variable, false otherwise.
%
polynomial_variable(X) :-
2018-11-19 16:59:53 +00:00
polynomial_variable_list(V),
2018-11-19 15:56:48 +00:00
member(X, V).
2018-11-19 16:59:53 +00:00
%% Tests:
2018-11-20 16:14:53 +00:00
%% ?- polynomial_variable(x).
%@ true .
%% ?- polynomial_variable(a).
2018-11-22 11:51:19 +00:00
%@ false.
2018-11-17 16:14:13 +00:00
2018-11-22 11:51:19 +00:00
%% power(+X:atom) is semidet
2018-11-18 16:33:09 +00:00
%
2018-11-19 16:59:53 +00:00
% Returns true if X is a power term, false otherwise.
2018-11-18 16:33:09 +00:00
%
2018-11-22 12:34:42 +00:00
power(P^N) :-
(
2018-11-22 13:57:46 +00:00
zcompare((<), 0, N),
polynomial_variable(P)
;
fail
).
2018-11-18 16:33:09 +00:00
power(X) :-
2018-11-19 16:59:53 +00:00
polynomial_variable(X).
%% Tests:
2018-11-22 11:51:19 +00:00
%% ?- power(x).
%@ true .
2018-11-22 13:57:46 +00:00
%% ?- power(a).
%@ false.
2018-11-19 16:59:53 +00:00
%% ?- power(x^1).
2018-11-19 16:07:13 +00:00
%@ true .
2018-11-22 11:51:19 +00:00
%% ?- power(x^3).
%@ true .
2018-11-20 16:14:53 +00:00
%% ?- power(x^(-3)).
2018-11-22 13:57:46 +00:00
%@ false.
2018-11-22 11:51:19 +00:00
%% ?- power(X).
2018-11-22 13:57:46 +00:00
%@ X = x^_7334,
%@ _7334 in 1..sup ;
%@ X = y^_7334,
%@ _7334 in 1..sup ;
%@ X = z^_7334,
%@ _7334 in 1..sup ;
2018-11-22 11:51:19 +00:00
%@ X = x ;
%@ X = y ;
%@ X = z.
2018-11-18 16:33:09 +00:00
%% term(+N:atom) is det
%
2018-11-19 16:59:53 +00:00
% Returns true if N is a term, false otherwise.
2018-11-18 16:33:09 +00:00
%
term(N) :-
2018-11-23 14:56:01 +00:00
(nonvar(N),
number(N));
(not(compound(N)), var(N),
N in inf..sup).
%% {N >= -1000, N =< 1000}.
%% N ::= inf..sup.
%% (var(N), N in inf..sup).
2018-11-18 16:33:09 +00:00
term(X) :-
power(X).
term(L * R) :-
term(L),
2018-11-20 16:14:53 +00:00
term(R).
2018-11-22 13:57:46 +00:00
%% append_two_atoms_with_star(L, R, T).
2018-11-19 16:59:53 +00:00
%% Tests:
2018-11-20 16:14:53 +00:00
%% ?- term(2*x^3).
%@ true .
%% ?- term(x^(-3)).
2018-11-22 11:51:19 +00:00
%@ false.
2018-11-22 13:57:46 +00:00
%% ?- term(a).
%@ false.
%% ?- term(-1*x).
%@ true .
2018-11-22 11:51:19 +00:00
%% ?- term((-3)*x^2).
2018-11-20 16:14:53 +00:00
%@ true .
2018-11-22 13:57:46 +00:00
%% ?- term(3.2*x).
%@ true .
%% ?- term(X).
2018-11-23 14:56:01 +00:00
%@ X in inf..sup ;
%@ X = x^_1242,
%@ _1242 in 1..sup ;
%@ X = y^_1242,
%@ _1242 in 1..sup ;
%@ X = z^_1242,
%@ _1242 in 1..sup ;
%@ X = x ;
%@ X = y ;
%@ X = z ;
%@ X = _1330*_1332,
%@ _1330 in inf..sup,
%@ _1332 in inf..sup ;
%@ X = _1406*x^_1414,
%@ _1406 in inf..sup,
%@ _1414 in 1..sup ;
%@ X = _1406*y^_1414,
%@ _1406 in inf..sup,
%@ _1414 in 1..sup ;
%@ X = _1406*z^_1414,
%@ _1406 in inf..sup,
%@ _1414 in 1..sup ;
%@ X = _1188*x,
%@ _1188 in inf..sup .
2018-11-22 13:57:46 +00:00
%% Doesn't give all possible terms, because number(N) is not reversible
%% The ic library seems to be able to help here, but it's not a part of
%% SwiPL by default
2018-11-19 16:59:53 +00:00
%% is_term_valid_in_predicate(+T, +F) is det
2018-11-18 16:33:09 +00:00
%
% Returns true if valid Term, fails with UI message otherwise.
% The fail message reports which Term is invalid and in which
2018-11-19 16:59:53 +00:00
% predicate the problem ocurred.
2018-11-18 16:33:09 +00:00
%
2018-11-19 16:59:53 +00:00
is_term_valid_in_predicate(T, F) :-
(
2018-11-18 16:33:09 +00:00
term(T)
;
2018-11-18 16:33:09 +00:00
write("Invalid term in "),
write(F),
write(": "),
write(T),
fail
).
2018-11-19 16:59:53 +00:00
%% Tests:
2018-11-22 13:57:46 +00:00
%% ?- is_term_valid_in_predicate(1, "Test").
2018-11-20 16:14:53 +00:00
%@ true .
2018-11-22 13:57:46 +00:00
%% ?- is_term_valid_in_predicate(a, "Test").
2018-11-18 16:33:09 +00:00
%% polynomial(+M:atom) is det
%
% Returns true if polynomial, false otherwise.
%
polynomial(M) :-
term(M).
polynomial(L + R) :-
polynomial(L),
2018-11-19 16:59:53 +00:00
term(R).
%% Tests:
2018-11-22 11:51:19 +00:00
%% ?- polynomial(x).
%@ true .
%% ?- polynomial(x^3).
%@ true .
%% ?- polynomial(3*x^7).
%@ true .
%% ?- polynomial(2 + 3*x + 4*x*y^3).
%@ true .
2018-11-22 13:57:46 +00:00
%% ?- polynomial(a).
%@ false.
%% ?- polynomial(x^(-3)).
%@ false.
2018-11-18 16:33:09 +00:00
%% power_to_canon(+T:atom, -T^N:atom) is det
%
% Returns a canon power term.
%
2018-11-19 16:59:53 +00:00
power_to_canon(T^N, T^N) :-
2018-11-22 11:51:19 +00:00
polynomial_variable(T),
2018-11-22 13:57:46 +00:00
N #\= 1.
2018-11-19 16:59:53 +00:00
power_to_canon(T, T^1) :-
polynomial_variable(T).
%% Tests:
%% ?- power_to_canon(x, X).
2018-11-22 11:51:19 +00:00
%@ X = x^1 .
%% ?- power_to_canon(X, x^1).
2018-11-19 16:59:53 +00:00
%@ X = x .
2018-11-22 11:51:19 +00:00
%% ?- power_to_canon(X, x^4).
%@ X = x^4 .
2018-11-22 13:57:46 +00:00
%% ?- power_to_canon(X, a^1).
%@ false.
%% ?- power_to_canon(X, x^(-3)).
%@ X = x^ -3 .
2018-11-19 16:59:53 +00:00
%% term_to_list(?T, ?List) is det
2018-11-18 16:33:09 +00:00
%
2018-11-19 16:59:53 +00:00
% Converts a term to a list and vice versa.
% Can verify if term and list are compatible.
2018-11-18 16:33:09 +00:00
%
term_to_list(L * N, [N | TS]) :-
number(N),
2018-11-19 16:59:53 +00:00
term_to_list(L, TS).
term_to_list(L * P, [P2 | TS]) :-
power(P),
power_to_canon(P, P2),
term_to_list(L, TS).
term_to_list(N, [N]) :-
number(N).
term_to_list(P, [P2]) :-
power(P),
power_to_canon(P, P2).
%% Tests:
2018-11-22 13:57:46 +00:00
%% ?- term_to_list(1, X).
%@ X = [1] .
%% ?- term_to_list(-1, X).
%@ X = [-1] .
2018-11-20 16:14:53 +00:00
%% ?- term_to_list(1*2*y*z*23*x*y*x^3*x, X).
%@ X = [x^1, x^3, y^1, x^1, 23, z^1, y^1, 2, 1] .
%% ?- term_to_list(X, [-1]).
%@ X = -1 .
%% ?- term_to_list(X, [x^1, -1]).
%@ X = -1*x .
%% ?- term_to_list(X, [- 1, x^1]).
%@ false.
%@ X = x* -1 .
2018-11-19 16:59:53 +00:00
%% ?- term_to_list(X, [y^1, x^1]).
%@ X = x*y .
%% ?- term_to_list(X, [x^4]).
2018-11-22 11:51:19 +00:00
%@ X = x^4 .
2018-11-19 16:59:53 +00:00
%% ?- term_to_list(X, [y^6, z^2, x^4]).
%@ X = x^4*z^2*y^6 .
2018-11-20 16:14:53 +00:00
%% simplify_term(+Term_In:term, ?Term_Out:term) is det
2018-11-18 16:33:09 +00:00
%
2018-11-19 16:59:53 +00:00
% Simplifies a term.
2018-11-18 16:33:09 +00:00
%
2018-11-20 16:14:53 +00:00
simplify_term(Term_In, Term_Out) :-
term_to_list(Term_In, L),
2018-11-17 23:53:49 +00:00
sort(0, @=<, L, L2),
2018-11-20 16:14:53 +00:00
(
member(0, L2),
Term_Out = 0
;
2018-11-22 13:57:46 +00:00
(
length(L2, 1),
Term_Out = Term_In
);
2018-11-20 16:14:53 +00:00
exclude(==(1), L2, L3),
join_similar_parts_of_term(L3, L4),
2018-11-20 16:14:53 +00:00
sort(0, @>=, L4, L5),
term_to_list(Term_Out, L5)
),
% First result is always the most simplified form.
!.
2018-11-19 16:59:53 +00:00
%% Tests:
2018-11-22 13:57:46 +00:00
%% ?- simplify_term(1, X).
%@ X = 1.
%% ?- simplify_term(x, X).
%@ X = x.
%% ?- simplify_term(2*y*z*x^3*x, X).
2018-11-20 16:14:53 +00:00
%@ X = 2*x^4*y*z.
%% ?- simplify_term(1*y*z*x^3*x, X).
%@ X = x^4*y*z.
%% ?- simplify_term(0*y*z*x^3*x, X).
%@ X = 0.
%% ?- simplify_term(6*y*z*7*x*y*x^3*x, X).
%@ X = 42*x^2*x^3*y^2*z.
2018-11-22 13:57:46 +00:00
%% ?- simplify_term(a, X).
%@ false.
%% ?- simplify_term(x^(-3), X).
%@ false.
2018-11-17 23:53:49 +00:00
%% join_similar_parts_of_term(+List, -List)
2018-11-19 16:59:53 +00:00
%
% Combine powers of the same variable in the given list
%
join_similar_parts_of_term([P1, P2 | L], L2) :-
2018-11-19 16:59:53 +00:00
power(P1),
power(P2),
2018-11-19 15:56:48 +00:00
B^N1 = P1,
B^N2 = P2,
N is N1 + N2,
join_similar_parts_of_term([B^N | L], L2).
join_similar_parts_of_term([N1, N2 | L], L2) :-
2018-11-17 23:53:49 +00:00
number(N1),
number(N2),
N is N1 * N2,
join_similar_parts_of_term([N | L], L2).
join_similar_parts_of_term([X | L], [X | L2]) :-
join_similar_parts_of_term(L, L2).
join_similar_parts_of_term([], []).
2018-11-19 16:59:53 +00:00
%% Tests:
%% ?- join_similar_parts_of_term([3], T).
%@ T = [3].
%% ?- join_similar_parts_of_term([x^2], T).
%@ T = [x^2].
%% ?- join_similar_parts_of_term([x^1, x^1, x^1, x^1], T).
%@ T = [x^4] .
%% ?- join_similar_parts_of_term([2, 3, x^1, x^2], T).
2018-11-22 13:57:46 +00:00
%@ T = [6, x^3] .
%% ?- join_similar_parts_of_term([2, 3, x^1, x^2, y^1, y^6], T).
2018-11-22 13:57:46 +00:00
%@ T = [6, x^3, y^7] .
2018-11-19 16:59:53 +00:00
%% simplify_polynomial(+P:atom, -P2:atom) is det
2018-11-18 16:33:09 +00:00
%
2018-11-19 16:59:53 +00:00
% Simplifies a polynomial.
2018-11-18 16:33:09 +00:00
%
simplify_polynomial(0, 0) :-
2018-11-19 16:59:53 +00:00
!.
simplify_polynomial(P, P2) :-
polynomial_to_list(P, L),
2018-11-23 14:56:01 +00:00
simplify_polynomial_as_list(L, L2),
polynomial_to_list(P2, L2),
2018-11-19 16:59:53 +00:00
!.
%% Tests:
2018-11-22 13:57:46 +00:00
%% ?- simplify_polynomial(1, X).
%@ X = 1.
%% ?- simplify_polynomial(0, X).
%@ X = 0.
%% ?- simplify_polynomial(x, X).
%@ X = x.
%% ?- simplify_polynomial(x*x, X).
%@ X = x^2.
%% ?- simplify_polynomial(2 + 2, X).
%@ X = 2*2.
%% ?- simplify_polynomial(x + x, X).
%@ X = 2*x.
%% ?- simplify_polynomial(0 + x*x, X).
%@ X = x^2.
%% ?- simplify_polynomial(x^2*x + 3*x^3, X).
%@ X = 4*x^3.
%% ?- simplify_polynomial(x^2*x + 3*x^3 + x^3 + x*x*x, X).
%@ X = 6*x^3.
%% ?- simplify_polynomial(x^2*x + 3*x^3 + x^3 + x*x*4 + z, X).
%@ X = 5*x^3+4*x^2+z.
%% ?- simplify_polynomial(x + 1 + x, X).
%@ X = 2*x+1.
%% ?- simplify_polynomial(x + 1 + x + 1 + x + 1 + x, X).
%@ X = 4*x+3*1.
%% join_similar_terms(+P:ListList, -P2:ListList) is det
%
% Joins similar sublists representing terms by using
% `add_terms` to check if they can be merged and perform
% the addition. Requires the list of list be sorted with
% `maplist(sort(0, @>=), L, L2),
% sort(0, @>=, L2, L3)`
% and that the sublists to be sorted with
% `sort(0, @=<)` since that is inherited from `add_terms`
%
join_similar_terms([TL, TR | L], L2) :-
%% Check if terms can be added and add them
add_terms(TL, TR, T2),
%% Recurse, accumulation on the first element
join_similar_terms([T2 | L], L2),
%% Give only first result. Red cut
!.
join_similar_terms([X | L], [X | L2]) :-
%% If a pair of elements can't be added, skip one
%% and recurse
join_similar_terms(L, L2),
%% Give only first result. Red cut
!.
join_similar_terms([], []).
%% Tests:
%% ?- join_similar_terms([[2, x^3], [3, x^3], [x^3]], L).
%@ L = [[6, x^3]].
2018-11-20 16:14:53 +00:00
%% term_to_canon(+T:List, -T2:List) is det
%
% Adds a 1 if there's no number in the list
% Requires the list to be sorted such that the
% numbers come first. For instance with
% `sort(0, @=<)`
%
term_to_canon([T | TS], [1, T | TS]) :-
%% Since the list is sorted, if the first element
%% is not a number, then we need to add the 1
not(number(T)),
%% Give only first result. Red cut
!.
term_to_canon(L, L).
%% Tests:
%% ?- term_to_canon([2], T).
%@ T = [2].
%% ?- term_to_canon([x^3], T).
%@ T = [1, x^3].
%% ?- term_to_canon([x^3, z], T).
%@ T = [1, x^3, z].
%% ?- term_to_canon([2, x^3], T).
%@ T = [2, x^3].
%% add_terms(+L:List, +R:List, -Result:List) is det
%
% Adds two terms represented as list by adding
% the coeficients if the power is the same.
% Requires the list of terms to be simplified.
%
add_terms([NL | TL], [NR | TR], [N2 | TL2]) :-
term_to_canon([NL | TL], [NL2 | TL2]),
term_to_canon([NR | TR], [NR2 | TR2]),
TL2 == TR2,
N2 is NL2 + NR2.
%% Tests
%% ?- add_terms([1], [1], R).
%@ R = [2].
%% ?- add_terms([x], [x], R).
%@ R = [2, x].
%% ?- add_terms([2, x^3], [x^3], R).
%@ R = [3, x^3].
%% ?- add_terms([2, x^3], [3, x^3], R).
%@ R = [5, x^3].
2018-11-23 15:00:50 +00:00
%% simplify_polynomial_as_list(+L1:List,-L3:List) is det
2018-11-19 16:59:53 +00:00
%
% Simplifies a polynomial represented as a list
2018-11-19 16:59:53 +00:00
%
2018-11-23 14:56:01 +00:00
simplify_polynomial_as_list(L, L11) :-
maplist(term_to_list, L, L2),
maplist(sort(0, @>=), L2, L3),
sort(0, @>=, L3, L4),
maplist(join_similar_parts_of_term, L4, L5),
maplist(sort(0, @=<), L5, L6),
join_similar_terms(L6, L7),
maplist(reverse, L7, L8),
maplist(term_to_list, L9, L8),
delete(L9, 0, L10),
sort(0, @=<, L10, L11).
2018-11-17 16:14:13 +00:00
%% polynomial_to_list(+P:polynomial, -L:List)
%
% Converts a polynomial in a list.
%
polynomial_to_list(L - T, [T2 | LS]) :-
term(T),
negate_term(T, T2),
polynomial_to_list(L, LS).
polynomial_to_list(L + T, [T | LS]) :-
term(T),
polynomial_to_list(L, LS).
polynomial_to_list(T, [T]) :-
term(T).
%% Tests:
%% ?- polynomial_to_list(2, S).
%@ S = [2] .
%% ?- polynomial_to_list(x^2, S).
%@ S = [x^2] .
%% ?- polynomial_to_list(x^2 + x^2, S).
%@ S = [x^2, x^2] .
%% ?- polynomial_to_list(2*x^2+5+y*2, S).
%@ S = [y*2, 5, 2*x^2] .
%% ?- polynomial_to_list(2*x^2+5-y*2, S).
%@ S = [-2*y, 5, 2*x^2] .
%% ?- polynomial_to_list(2*x^2-5-y*2, S).
%@ S = [-2*y, -5, 2*x^2] .
%% ?- polynomial_to_list(P, [2]).
%@ P = 2 .
%% ?- polynomial_to_list(P, [x]).
%@ P = x .
%% ?- polynomial_to_list(P, [x^2, x, 2.3]).
2018-11-23 14:56:01 +00:00
%@ ERROR: Type error: `integer' expected, found `_10776*_10778' (a compound)
%@ ERROR: In:
%@ ERROR: [16] throw(error(type_error(integer,...),_10828))
%@ ERROR: [14] clpfd:attr_unify_hook(clpfd_attr(no,no,no,from_to(inf,sup),fd_props([],[],[])),_10896*_10898) at /usr/lib/swipl-7.6.4/library/clp/clpfd.pl:7127
%@ ERROR: [13] '$attvar':uhook(clpfd,clpfd_attr(no,no,no,from_to(inf,sup),fd_props([],[],[])),_10962*_10964) at /usr/lib/swipl-7.6.4/boot/attvar.pl:86
%@ ERROR: [12] '$attvar':call_all_attr_uhooks(att(clpfd,clpfd_attr(no,no,no,...,...),[]),_11020*_11022) at /usr/lib/swipl-7.6.4/boot/attvar.pl:63
%@ ERROR: [11] '$attvar':'$wakeup'(wakeup(att(clpfd,...,[]),_11072*_11074,[])) at /usr/lib/swipl-7.6.4/boot/attvar.pl:58
%@ ERROR: [10] term_to_list(_11104*_11106,[_11110|_11112]) at /tmp/ediprologEjek6K:198
%@ ERROR: [9] negate_term(_11142*_11144,x^2) at /tmp/ediprologEjek6K:470
%@ ERROR: [8] polynomial_to_list(_11180-_11186*_11188,[x^2,x|...]) at /tmp/ediprologEjek6K:436
%@ ERROR: [7] <user>
%@ ERROR:
%@ ERROR: Note: some frames are missing due to last-call optimization.
%@ ERROR: Re-run your program in debug mode (:- debug.) to get more detail.
%@ Exception: (10) term_to_list(_9692{clpfd = ...}, _11268) ? abort
%@ % Execution Aborted
%@ Action (h for help) ? abort
%@ % Execution Aborted
%@ P = -2.3+x+x^2 .
%% list_to_polynomial(+P:polynomial, -L:List)
%
% Converts a list in a polynomial.
%
list_to_polynomial([T1|T2], P) :-
list_to_polynomial(T2, L1),
(
not(L1 = []),
(
term_string(T1, S1),
string_chars(S1, [First|_]),
First = -,
term_string(L1, S2),
string_concat(S2,S1,S3),
term_string(P, S3)
;
P = L1+T1
)
;
P = T1
),
% The others computations are semantically meaningless
!.
list_to_polynomial(T, P) :-
P = T.
%% Tests:
%% TODO
%% negate_term(T, T2) is det
%
% Negate the coeficient of a term and return the negated term
%
negate_term(T, T2) :-
term_to_list(T, L),
sort(0, @=<, L, L2),
term_to_canon(L2, L3),
[N | R] = L3,
%% (-)/1 is an operator, needs to be evaluated, otherwise
%% it gives a symbolic result, which messes with further processing
N2 is -N,
reverse([N2 | R], L4),
term_to_list(T2, L4),
!.
%% Tests:
%% ?- negate_term(1, R).
%@ R = -1.
%% ?- negate_term(x, R).
%@ R = -1*x.
%% ?- negate_term(x^2, R).
%@ R = -1*x^2.
%% ?- negate_term(3*x*y^2, R).
%@ R = -3*x*y^2.
%% append_two_atoms_with_star(+V1, +V2, -R) is det
%
% Returns R = V1 * V2
%
append_two_atoms_with_star(V1, V2, R) :-
2018-11-21 15:23:35 +00:00
% Convert term V2 into a string V3
term_string(V2, V3),
2018-11-21 15:23:35 +00:00
% Concat atom V1 with * into a compound V4
atom_concat(V1, *, V4),
2018-11-21 15:23:35 +00:00
% Concat atom V4 with V3 into a compound S
atom_concat(V4, V3, S),
2018-11-21 15:23:35 +00:00
% Convert compound S into a term R
term_string(R, S).
%% Tests:
2018-11-21 15:23:35 +00:00
% ?- append_two_atoms_with_star(2, x^2, R).
%@ R = 2*x^2.
%@ R = 2*x^2.
%@ R = 2*3.
%% scale_polynomial(+P:polynomial,+C:constant,-S:polynomial) is det
%
% Scales a polynomial with a constant
%
scale_polynomial(P, C, S) :-
polynomial_to_list(P, L),
2018-11-23 14:56:01 +00:00
maplist(term_to_list, L, L2),
maplist(cons(C), L2, L3),
maplist(term_to_list, L4, L3),
simplify_polynomial_as_list(L4, L5),
2018-11-23 15:00:50 +00:00
list_to_polynomial(L5, S),
!.
%simplify_polynomial(S1, S).
2018-11-21 15:23:35 +00:00
%% Tests:
%% ?- scale_polynomial(3*x^2, 2, S).
2018-11-23 14:56:01 +00:00
%@ ERROR: Undefined procedure: list_to_polynomial/2
%@ ERROR: In:
%@ ERROR: [9] list_to_polynomial([6* ...],_32496)
%@ ERROR: [8] scale_polynomial(3*x^2,2,_32536) at /tmp/ediprologEjek6K:536
%@ ERROR: [7] <user>
%@ Exception: (9) list_to_polynomial([6*x^2], _30888) ? abort
%@ % Execution Aborted
%@ S = [[2, x^2, 3]] .
%@ S = [[3, x^2, 3]] .
%@ false.
%@ S = [[_21808, x^2, 3]] ;
%@ false.
2018-11-21 15:23:35 +00:00
%@ S = 2*3*x^2.