vote up 23 vote down star
11

Many study Prolog in college, but I have personally not come in contact with it professionally. The traditional examples given are AI and expert system applications, but what have you used it for and what made Prolog a suitable language for the task?

flag
4  
You know what they say: If it works it's not AI :-) – AleP Oct 16 '08 at 3:20

19 Answers

vote up 14 vote down check

The first Erlang interpreter was developed in Prolog by Joe Armstrong. Prolog was also used by NASA to build a software named "clarissa", for the ISS. Clarissa is a voice user interface for browsing space station procedures. There's also PrologBeans, which you can use to build even a Web App (integrated with other languages. As for me, I have only used Prolog for AI projects in college...

link|flag
vote up 21 vote down

Our company (www.intologic.com) mostly uses Prolog.

It's really good for rule-based systems; a.k.a "business rules", depending on who you're talking to :)

Our end-customers are Ericsson (for 'building' sales solutions for their telephone switches etc), and some banks and insurance companies, whom we supply with the tools to evaluate loan applications, make profitability calculations etc.

Our customers like not having to have the logic hidden in hard-coded modules made by a programmer with little or no interest/knowledge about the area in question (like me!).

In fact, we have a graphical tool that allows even non-programmers to draw all the logic rules that are needed. (Drawing done in Visio, and Prolog code is constructed directly from the drawings)

It's going very well! The site is not very updated or Anglified (we're swedish), mainly because we get as many customers as we can handle right now. The partner company that supply us with most of our customers are very enthusiastic about the technology, and they are using it for more and more things in their own systems.

We make different interfaces to the rule-engine for different purposes; the desktop and webservice clients are the ones most used, but there is also a web application under development.

The main hassle is the connection to C# and other languages - I wish they had a less archaic way of connecting to the logic engine than sockets, but the version of Prolog we use (Sicstus) is made in C, and has been refined for many years to be brutally efficient at what it does.

link|flag
vote up 8 vote down

You could just go to some Prolog distributions' customer listings. You will notice that Prolog is typcially used in academic and research contexts. Why this is so, I have no real idea.

Prolog is dynamic, it is extremely well suited for rapid prototyping and it is solid for developing larger scale applications in it. It makes an ideal language to develop a parser and to code up data base logic.

Typically, Prolog is partnered with Java and there are several projects up and coming to enhance Java/Prolog interoperability. Check out jProlog and Prolog Cafe. But Prolog also has a native C interface.

You will also see a lot of Prolog usage in Natural Language Processing and Computational Linguistics. Those fields have typically had a strong Prolog tradition.

Yes, Prolog is underrated and underrepresented, especially in the industry. People still think it's esoteric and whatnot, and it doesn't have the great community Haskell has. Plus, it suffers from the same Lisp disease of having too many different competing implementations. Although SWI and Sicstus are pretty much the "industry" standards right now.

link|flag
vote up 4 vote down

I did some work on the system that underlies powerset, which is written in C with embedded prolog. NLP, at least as the parc team do it, is often about unification of complex graphs - and Prolog is great at that straight out of the box.

link|flag
vote up 3 vote down

Despite what many seem to think, Prolog and other related languages has (and is) used in many commercial applications. Quite often it is not advertised; the reasons for this may vary. One relatively old database is kept at

http://www.cs.cmu.edu/afs/cs/project/ai-repository/ai/lang/prolog/doc/pl_1000/pl1000v1.gz

In the meantime, many other applications have been developed as posts by companies witness. There are fields where it has been applied with quite a success, such as bioinformatics (automated learning of drug shapes and protein folding), but of course these are not "commercial" applications in the sense that you do not get them sold over the counter. However, the impact they have is the "real world" (we're talking about medications!) is hard to overestimate.

I wholeheartedly agree with the poster who states that Prolog is overlooked in many situations. Also, because the way it has been taught does not empashize practical usage, but quite often theoretical concepts. On the other hand, Prolog by itself is just an example of a logic programming language. Logic programming offers much more tools than just Prolog (answer set programming, tabling, constraint solving, etc.) and narrowing the possibilties of LP to just Prolog is not making justice to LP.

link|flag
vote up 2 vote down

I haven't used Prolog in a professional sense but the most interesting commercial application of Prolog outside straight expert-system applications was a Excess of Loss Reinsurance recoveries calculator called Excelsior that was written in LPA Prolog. IIRC they rewrote it in C++ and it's now called RePro.

link|flag
vote up 2 vote down

Prolog is seldom used to write any application. They are usually interfaced with some other programming language( c, c++ mostly ) as a module to handle the AI processing part.

At least that's what i've seen done.

link|flag
vote up 2 vote down

The IBM Tivoli Enterprise Console is an event management system that uses a dialect of Prolog for its event processing rules.

link|flag
vote up 2 vote down

I've used Prolog in academic and commercial fields. Compiled Prolog is fast and makes for extremely good pattern matching and inferencing. I think is probably the mos underrated language hands down.

The problem is that you have to learn to program it and take advantage of Predicate Logic, The Art of Prolog is probably the best book IMHO to learn Prolog.

The main problem i find is the lack of a decent IDE and a modern UI framework, those usually tend to be ad-hoc solutions.

link|flag
vote up 1 vote down

Genexus, a rapid development language developed by Artech in Uruguay, uses Prolog at its core to generate code. See here for example.

link|flag
vote up 1 vote down

In grad school I used it a bit in some program analysis work I was doing. I would use a conventional parser to go through a C program and build a database of facts about that program (such as which functions called other functions). Prolog made it very easy to search that set of facts to glean some interesting relationships (for example, if a loop called a function, did that function -- or one of the functions it called, etc, etc -- contain a loop).

But mostly it was just an excuse to write Prolog code. Still one of the most fun languages I've ever used.

link|flag
vote up 1 vote down

You might find this article very useful. It gives several real world applications where prolog was used.

Prolog is overlooked in many situations where it might be useful in the business world because the treatment of it in academia is not implementation oriented the way Java or C# might be taught. It is mostly used to teach theoretical concepts. This is unfortunate because there are many non numerical problems that may be solved useing a logical language.

link|flag
vote up 1 vote down

I use it in my work for machine translation. YA RLY.

It is great for parsing natural language because of backtracking, which matches the inherent ambiguity in language. Debugging it is pretty very slow and painful though.

link|flag
vote up 1 vote down

Prolog occupies a very special place in my heart. Here are some notable applications which haven't been mentioned yet:

  1. DealBuilder - automatic construction of legal documents

  2. Arezzo - "Clinical decision support"

  3. InFlow - Social network analysis (looking for the terr'ists)

Unfortunately none of these web pages (AFAIK) mention prolog, so you'll have to take my word for it. If you like, I can send the supporting lecture slides.

link|flag
vote up 1 vote down

LPA, a commercial Prolog vendor from UK, has been mentioned before. They have a list of application briefs on their web site. The page mentions a payroll system, fire training, image recognition and fungus identification, among others.

link|flag
vote up 0 vote down

Remember a particular project about 3 years back. For an insurance firm they used this software called GraphTalk. It has a nice OOP architecture & the programming language used was Prolog.

Was pretty interesting to work - learnt a lot about cut, predicates, tail recursion and so on.

link|flag
vote up 0 vote down

As a current developer in GraphTalk, I agree Prolog is a nice language. Not always appropriate, but when needed, very nice.

link|flag
vote up 0 vote down

I implemented a Prolog-based system to write a mobile phone email configuration tool. It was used by several of the world's largest mobile phone makers as a web-based support service.

We used Prolog to escape from unmaintainably large database joins and to implement ever more complex decision making using textual rules rather than dropping and inserting multiple tuples in a database.

We also tried to use Prolog-based meta-interpreters to determine the proof tree that lead to extract the proof tree of rules that lead to an individual permutation of options being included in a customer's contract. Although we got the meta-interpreter code working we failed to present this data meaningfully and usefully.

link|flag
vote up 0 vote down

My Answer

link|flag

Your Answer

Get an OpenID
or

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