Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this code in prolog :

domains
      person                 = person(name,address)
      name                   = name(first,last)
      address                = addr(street,city,state)
      street                 = street(number,street_name)
      city,state,street_name = string
      first,last             = string
      number                 = integer

    goal
      P1 = person(name("jim","mos"),addr(street(5,"1st st"),"igo","CA")),
      P1 = person(name(_,"mos"),Address),
      P2 = person(name("jane","mos"),Address),nl,
      write("P1bb=",P1),nl,
      write("P2bb=",P2),nl.

I want to change positions of {(p1 & p2) or person(name,address)} in goal and rewrite them in clauses section . and in the goal I need code like switch statement that allow to user search by "street" in case one or search by "first" in case two

share|improve this question
I don't really understand the question. That's not Prolog code. – NotAUser Jan 24 at 9:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.