Menu

Is it possible to construct prolog tree in C#?

2015-06-12
2015-06-15
  • dzmitry.lahoda

    dzmitry.lahoda - 2015-06-12

    Is it possible to construct prolog tree in C#?

    I mean instead parsing

    cat(tom).
    ?- cat(tom)
    

    i write C# code like

    var fact = new Fact("cat","tom");
    var result = fact.Ask("tom");
    

    and of this kind to more complex rules?

    I think if F# it will look much more natural.

     
  • John Pool

    John Pool - 2015-06-15

    Hello Dzmitry,

    No, not at the moment. You will have to do that yourself, I'm afraid, because apart from bugfixing I have no plans for making new enhancements to C#Prolog. I am willing to give you advice, though, if you start doing something in this direction.

    Kind regards, John Pool

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.