Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Logical Equations

by salva (Canon)
on Jul 09, 2009 at 08:29 UTC ( [id://778501]=note: print w/replies, xml ) Need Help??


in reply to Logical Equations

Prolog to the rescue!
use Language::Prolog::Yaswi qw(:load :query); use Language::Prolog::Sugar vars => [qw(A B C D E F)], functors => [qw(problem)]; swi_inline <<EOP; :- use_module(library(clpfd)). problem(Vars) :- Vars = [A, B, C, D, E, F], Vars ins 0..1, A + E #=< 1, A + B #=< 1, C + E #=< 1, D + F #=< 1, B + D #=< 1, A + C + E #>= 1, B + D #>= 1, E + F #>= 1, D + F #= 1, A + E #=< 1, C + D #=< 1, A + B + C + D + E + F #= 3, label(Vars). EOP swi_set_query(problem([A, B, C, D, E, F])); while (swi_next) { my @r = swi_vars(A, B, C, D, E, F); print join(', ', @r), "\n"; } # prints: # 0, 1, 0, 0, 1, 1 # 0, 1, 1, 0, 0, 1
update: Language::Prolog::Yaswi 0.18 required!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://778501]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-24 05:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found