Giter Club home page Giter Club logo

Comments (3)

michaelballantyne avatar michaelballantyne commented on July 29, 2024

I think you're after this program:

(run* (q r)                                                                                                                                                   
  (matche (q)                                                                                                                                                     
    ((A)) ((B)))                                                                                                                                    
  (matche (q r)                                                                                                                                                   
    ((A a))                                                                                                                                                 
    ((,?? b) (=/= q 'A))))

Notice the lack of quotes in the match patterns. Pattern positions are implicitly quoted; that's why you have to write the unquote in front of your pattern variable. Including a quote when not needed results in the data (quote A), say, instead of A. In contrast, the arguments to =/= are not implicitly quoted. So your first matche unifies q with the datum (quote A), whereas your disequality says q must not be the datum A.

from faster-minikanren.

Reilithion avatar Reilithion commented on July 29, 2024

Whoops. I noticed that a couple minutes ago and was about to modify my post. Actually, I got to that bad example while trying to minify a somewhat more elaborate one. Here:

> (run* (q r) (matche (q) (((X a))) (((Y b)))) (matche (q r) (((X ,??) a)) ((,?? b) (fresh (s) (=/= q `(X ,s))))))
'(((X a) a) ((Y b) b) ((X a) b))

The intent of the constraint in this one is that I don't want the value of q to be a list beginning with 'X. It doesn't seem to work. Is the only way I can do this to build it from conde and break down the cases?

from faster-minikanren.

michaelballantyne avatar michaelballantyne commented on July 29, 2024

from faster-minikanren.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.