Git Product home page Git Product logo

Comments (4)

noxdafox avatar noxdafox commented on July 19, 2024 1

Apologies for the late reply.

This is the intended usage, if you want to pass an instance name, you need to cast it as such with the InstanceName class.

All CLIPSPy objects return strings in place of names and such. There is ambiguity between a CLIPS symbol and a CLIPS string which is very similar as for Lisp languages (usually solved using quoting '). Unfortunately, there is little we can do with that.

Adding convenience methods all around would complicate the API (lots more code, documentation and tests) with little added value.

After all:

instance = defclass.make_instance(
    "second_name", firstCl=first_instance.instance_name
)  

Is not much shorter than:

instance = defclass.make_instance(
    "second_name", firstCl=InstanceName(first_instance.name)
) 

With the difference that the former, requires the developer to know that instance_name returns a specific type, the latter makes it clear there is a type casting in place.

In my opinion, the latter form is preferable as more Pythonic: simple and clear.

from clipspy.

noxdafox avatar noxdafox commented on July 19, 2024

Hello,

I'm not quite sure I understand the question. Instances are not created from the Python object but through the related class make_instance as per the example in the documentation.

Python objects such as Class Instance or Fact are not meant to be used directly within the code base.

from clipspy.

dev-89 avatar dev-89 commented on July 19, 2024

Hi there,

I wrote an example (which ended up a bit lengthy) to demonstrate what I mean:

import clips

env = clips.Environment()

first_class = """
(defclass FirstClass 
  (is-a USER)
  (role concrete)
  (pattern-match reactive)
  (slot One)
  (slot Two))
"""

second_class = """
(defclass SecondClass 
  (is-a USER)
  (role concrete)
  (pattern-match reactive)
  (slot firstCl)
"""

rule = """
(defrule my-rule
  (object (is-a FirstClass)
    (name ?first_class_name)
  (object (is-a SecondClass)
    (firstCl ?first_instance)
  (test (eq ?first_class_name ?first_instance))

  =>
  (printout t "My Rule fired!" crlf))
"""

env.build(first_class)
env.build(second_class)
env.build(rule)

defclass = env.find_class("FirstClass")
first_instance = defclass.make_instance("first_name", One=1, Two=2)

defclass = env.find_class("SecondClass")
instance = defclass.make_instance(
    "second_name", firstCl=first_instance
)  # This way the rule will not get activated

If I change the last lines of the code to

from clips import InstanceName

instance = defclass.make_instance(
    "second_name", firstCl=InstanceName(first_instance.name)
)  # This way the rule will activate

the rule will fire. Hence why I proposed a convenience property like instance_name in my first comment, that way it is clearer for the user when the instance data is used and how to use the instance symbol, which is often needed in rules. I hope that can clear the intention described in the first comment.

Kind regards

from clipspy.

dev-89 avatar dev-89 commented on July 19, 2024

Thank you for the reply. I think that then clears my question/proposal.

from clipspy.

Related Issues (20)

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.