I'm trying to write a program that takes lists of packages and versions. It should be true if there are no conflicting versions, in the candidate set. That is, if there are no packages that are listed with different versions.
?- conflict_free([cython, gcc, gcc], ['0.11.2', '4.4.3', '4.4.3']).
true.
?- conflict_free([cython, gcc, gcc], ['0.11.2', '4.4.3', '4.4.0']).
false.
?- conflict_free([gfortran, gcc, libc6, libc6], ['4.4.3', '4.4.3', '2.11.1', '2.11.1']).
true.
?- conflict_free([gfortran, gcc, libc6, libc6], ['4.4.3', '4.4.3', '2.11.1', '2.7.3']).
false.
I tried to use position/4 to find the indexes of repeating elements which behaves like:
?- positions([a, b, c, b, c, a, d, b, c], b, Posn, 0).
Posn = [1, 3, 7].
?- positions([cython, gcc, gcc], gcc, Posn, 0).
Posn = [1, 2].
I tried to recursively use position/4 to check if there the return Posn is >= 2, then try to use the indexes in versions list and see if there is any different version. But that hasn't been working for me...
Any suggestions?