Merge branch 'master' of github.com:diogogithub/polynomialmani.pl

This commit is contained in:
Hugo Sales 2018-11-25 16:59:14 +00:00
commit fe4c207b13
1 changed files with 0 additions and 2 deletions

View File

@ -775,8 +775,6 @@ polynomial_to_list(T, [T]) :-
%@ 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(2*x^2+3*x+5*x^17-7*x^21+3*x^3-23*x^4+25*x^5-4.3, S).
%@ S = [-4.3, 25*x^5, -23*x^4, 3*x^3, -7*x^21, 5*x^17, 3*x, 2* ... ^ ...].
%% list_to_polynomial(+L:List, -P:Polynomial) is det
%