February 17, 2012

C Language Integrated Production System

C Language Integrated Production System

  • Commands
    • (exit)
    • Arithmetic
      • Add: (+ 2 4) = 6
      • Subtract: (- 2 4) = -4
      • Multiply: (* 2 4) = 8
      • Divide: (/ 2 4) = 0.5
    • deftemplate
      • (deftemplate templateName “Relation relationName”(slot slotName1)

        (slot slotName2) )

    • assert
      • (assert ( templateName ( slotName1 “slot1”) (slotName2 “slot2”) ) )
    • (facts 1 10) – to list down
    • (retract 1) – to remove
    • (modify factNumber(slotName1 “slotOne”))
    • (duplicate factNumber (slotName1 “slotOneOne”) )
    • (watch facts) – for debug
    • (deffacts plantsFacts “Few facts about plants(plant ( color “green” ) )

      (flower

      (flowerColor “red”)

      (flowerName “Rose”) ) )

Last updated: March 19, 2014
Did it helped? 2 thoughts on “C Language Integrated Production System
  1. Ali

    You could get a job without the degree, but it may limit your salary somewhat. So you have some nice examples of code that you’ve done? Do you know coding theory; are you ready to answer technical programming questions? They may ask you something like ‘how would you determine whether a number is a multiple of two as efficiently as possible?’ ‘What kind of sort would you use for this data?’ Have you written some large projects that you can describe on your resume?

  2. admin Post author

    Do you know about clips? This post is written for those guys who are interested to use clips before designing the fuzzy logic and forgot that what technical terms they have read in their books. I have posted a no. of articles on AI which are nothing but to refresh your knowledge. This blog is like a bookmark for you which will remind you like what technical terms are used in which process of development. I can obviously answer the technical questions asked to me but the most important thing is your concepts not only the definitions you memorize. Questions may vary person to person but if the base problem is common so answer could be given accordingly.

    Thanks for your interest in this blog,
    Fahad

Comments are closed.