up vote 13 down vote favorite
3
share [g+] share [fb]

Does anyone know of a nice (and preferably free) way to integrate Prolog and C#?

Im looking to create a Prolog dll or similar to call from my managed code, and retrieve an answer once all the processing has been complete. Im looking for it to be predominantly one sided (c# calls Prolog).

I have seen this question which talks about Prologs real world usage but I was wondering if anyone had either any experience with c# & Prolog? or a nice tutorial/article?

link|improve this question

1  
Hey Greg, I was curious what route you'd taken with this Prolog/C# integration and any luck you've had. In same boat here. Thx. -Al – mirezus Nov 12 '08 at 2:01
feedback

8 Answers

up vote 9 down vote accepted

Prolog.NET (edit: link updated as the old site link has been hacked) I've tried both P# and Prolog.NET, but both of them have their weak points.

link|improve this answer
1  
Note: Link may throw a malware warning, see this meta post - I'll remove this comment once the site that is linked has removed the rogue code. – Tim Post Aug 8 '11 at 14:11
1  
I removed the link. The site has been compromised. The only way to get prolog.net is to download the installers from the hacked website, which doesn't seem like the smartest thing to do. – Will Aug 8 '11 at 14:20
The author sent me an updated link; The page doesn't set off any alarms, but I don't know how safe it is. Download at your own risk. – Will Aug 17 '11 at 19:57
feedback

You can take a look at Yield Prolog.

Yield Prolog uses yield keyword in C# (and Python, and JavaScript) and custom Variable class to simulate Prolog machine. This way, you get a Prolog API in your favourite language. You don't need to connect your main language with P# or similiar projects.

link|improve this answer
feedback

Perhaps P# will be useful for you

link|improve this answer
feedback

It's not free, but Sicstus Prolog allows connection to C# and Java

This is the Prolog implementation we use at our company, and it is very fast and useful.

link|improve this answer
I have used Sicstus in the past and found it to be a very good product. I wasn't aware that it can connect with c#, the only problem now it the rather large licence fee! – TK. Feb 16 '09 at 8:28
feedback

C#Prolog, available from SourceForge (Prolog interpreter written in C#)

link|improve this answer
Here is the link: sourceforge.net/projects/cs-prolog – ThomasH Dec 24 '09 at 23:13
feedback

You can use ECLiPSe Prolog. i have integrated it with VC8. it would be better to use VC8 instead of C#.

link|improve this answer
feedback

SWI-Prolog interface to C#

link|improve this answer
feedback

If deployment with a full prolog implementation is not a problem you can use SWI-Prolog and talk to it via XPCE and sockets.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.