CLIPS “Expected the beginning of a construct”

前端 未结 1 1068
走了就别回头了
走了就别回头了 2021-01-19 17:39

I have this homework(I\'m a student), in CLIPS, however I can\'t make any progress, despite searching on google, and spending some time on it.

(clear)
(defte         


        
相关标签:
1条回答
  • 2021-01-19 18:15

    If you're using the load command to load this content, then you're mixing commands (such as clear) with CLIPS constructs (such as deftemplate and defrule). To fix this, first create a file such as book.clp with just constructs:

    (deftemplate book
        (multislot surname)(slot name)(multislot title) 
    )
    
    (deffacts initial
    (book (surname J.P.)(name Dubreuil)(title History of francmasons))
    (book (surname T.)(name Eker)(title Secrets of millionaire mind)))
    
    (defrule find_title
        ?book<-(book(name Eker))
        =>
        (printout t ?book crlf)
    )
    

    Then you can use the load command to load the file and run it:

    CLIPS> (clear)
    CLIPS> (load book.clp)
    %$*
    TRUE
    CLIPS> (reset)
    CLIPS> (agenda)
    0      find_title: f-2
    For a total of 1 activation.
    CLIPS> (facts)
    f-0     (initial-fact)
    f-1     (book (surname J.P.) (name Dubreuil) (title History of francmasons))
    f-2     (book (surname T.) (name Eker) (title Secrets of millionaire mind))
    For a total of 3 facts.
    CLIPS> (run)
    <Fact-2>
    CLIPS> 
    
    0 讨论(0)
提交回复
热议问题