Remove useless tests

This commit is contained in:
Diogo Cordeiro 2018-11-24 23:54:53 +00:00
parent d298364d0f
commit 1173d8175c
1 changed files with 0 additions and 2 deletions

View File

@ -627,8 +627,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
%