Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Prolog

From Wikipedia, the free encyclopedia
Programming language that uses first order logic
This article is about the programming language. For the narrative device, seePrologue. For other uses, seePrologue (disambiguation).
Prolog
ParadigmLogic
Designed byAlain Colmerauer
First appeared1972; 53 years ago (1972)
Stable release
Part 1: General core-Edition 1 (June 1995; 30 years ago (1995-06))
Part 2: Modules-Edition 1 (June 2000; 25 years ago (2000-06))
Part 3: Definite clause grammar rules (June 2025; 5 months ago (2025-06))
Typing disciplineUntyped (its single data type is "term")
Filename extensions.pl,.pro,.P
WebsitePart 1:www.iso.org/standard/21413.html
Part 2:www.iso.org/standard/20775.html
Part 3:www.iso.org/standard/83635.html
Majorimplementations
Amzi! Prolog,B-Prolog,Ciao,ECLiPSe,GNU Prolog,LPA Prolog,Poplog,P#,Quintus Prolog,Scryer Prolog,SICStus,Strawberry,SWI-Prolog,Tau Prolog,tuProlog,WIN-PROLOGXSB,YAP.
Dialects
ISO Prolog, Edinburgh Prolog
Influenced by
Planner
Influenced
CHR,Clojure,Datalog,Erlang,Epilog,KL0,KL1,Logtalk,Mercury,Oz,Strand,Visual Prolog

Prolog is alogic programming language that has its origins inartificial intelligence,automated theorem proving, andcomputational linguistics.[1][2][3]

Prolog has its roots infirst-order logic, aformal logic. Unlike many otherprogramming languages, Prolog is intended primarily as adeclarative programming language: the program is a set of facts andrules, which definerelations. Acomputation is initiated by running aquery over the program.[4]

Prolog was one of the first logic programming languages[5] and remains the most popular such language today, with several free and commercial implementations available. The language has been used fortheorem proving,[6]expert systems,[7]term rewriting,[8]type systems,[9],automated planning,[10], andquestion answering[11][12][13] as well as its original intended field of use,natural language processing.[14][11]

Prolog is a Turing-complete, general-purpose programming language, which is well-suited for intelligent knowledge-processing applications.

History

[edit]
Timeline of Prolog language
YearAix-MarseilleISO/IEC Standard
1972Prolog 0
1973Prolog I
1982Prolog II
1990Prolog III
199513211-1:1995
1996Prolog IV
200013211-2:2000
200713211-1:1995/Cor 1:2007
201213211-1:1995/Cor 2:2012
201713211-1:1995/Cor 3:2017
202513211-3:2025
Timeline of some early Prolog systems, up to the ISO Standard

The nameProlog was chosen by Philippe Roussel, at the suggestion of his wife, as an abbreviation forProgrammation enlogique (French forProgramming inlogic).[15] It was created around 1972 byAlain Colmerauer with Philippe Roussel, from theArtificial Intelligence Group of theFaculty of Sciences of Luminy ofAix-Marseille II University ofFrance. It was based onRobert Kowalski's procedural interpretation ofHorn clauses, and it was motivated in part by the desire to reconcile the use of logic as a declarative knowledge representation language with the procedural representation of knowledge that was popular in North America in the late 1960s and early 1970s. According toRobert Kowalski, the first Prolog system was developed in 1972 by Colmerauer and Phillipe Roussel.[16][17][18] The first implementation of Prolog was an interpreter written inFortran by Gerard Battani and Henri Meloni.David H. D. Warren took this interpreter to theUniversity of Edinburgh, and there implemented an alternative front-end, which came to define the "Edinburgh Prolog" syntax used by most modern implementations. Warren also implemented the first compiler for Prolog, creating the influential DEC-10 Prolog in collaboration with Fernando Pereira. Warren later generalised the ideas behind DEC-10 Prolog, to create theWarren Abstract Machine (WAM).

European AI researchers favored Prolog while Americans favoredLisp, reportedly causing many nationalistic debates on the merits of the languages.[19] Much of the modern development of Prolog came from the impetus of theFifth Generation Computer Systems project (FGCS), which developed a variant of Prolog namedKernel Language for its firstoperating system.

Pure Prolog was originally restricted to the use of aresolution theorem prover withHorn clauses of the form:

H :- B1, ..., Bn.

The application of the theorem-prover treats such clauses as procedures:

to show/solve H, show/solve B1 and ... and Bn.

Pure Prolog was soon extended, however, to includenegation as failure, in which negative conditions of the form not(Bi) are shown by trying and failing to solve the corresponding positive conditions Bi.

Subsequent extensions of Prolog by the original team introducedconstraint logic programming abilities into the implementations.

Impact

[edit]

Although Prolog is widely used in research and education,[20] Prolog and other logic programming languages have not had a significant impact on the computer industry in general.[21] Most applications are small by industrial standards, with few exceeding 100,000 lines of code.[21][22]Programming in the large is considered to be complex because not all Prolog compilers support modules, and there are compatibility problems between the module systems of the major Prolog compilers.[23] Portability of Prolog code across implementations has also been a problem, but developments since 2007 have meant: "the portability within the family of Edinburgh/Quintus derived Prolog implementations is good enough to allow for maintaining portable real-world applications."[24]

Software developed in Prolog has been criticised for having a high performance penalty compared to conventional programming languages. In particular, Prolog's non-deterministic evaluation strategy can be problematic when programming deterministic computations, or when even using "don't care non-determinism" (where a single choice is made instead of backtracking over all possibilities). Cuts and other language constructs may have to be used to achieve desirable performance, destroying one of Prolog's main attractions, the ability to run programs "backwards and forwards".[25]

Prolog is not purely declarative: because of constructs like thecut operator, a procedural reading of a Prolog program is needed to understand it.[26] The order of clauses in a Prolog program is significant, as the execution strategy of the language depends on it.[27] Other logic programming languages, such asDatalog, are truly declarative but restrict the language. As a result, many practical Prolog programs are written to conform to Prolog'sdepth-first search order, rather than as purely declarative logic programs.[25]

Use in industry

[edit]

Prolog has been used inWatson. Watson uses IBM's DeepQA software and the ApacheUIMA (Unstructured Information Management Architecture) framework. The system was written in various languages, including Java,C++, and Prolog, and runs on theSUSE Linux Enterprise Server 11 operating system usingApache Hadoop framework to provide distributed computing. Prolog is used forpattern matching over natural language parse trees. The developers have stated: "We required a language in which we could conveniently express pattern matching rules over the parse trees and other annotations (such as named entity recognition results), and a technology that could execute these rules very efficiently. We found that Prolog was the ideal choice for the language due to its simplicity andexpressiveness."[11] Prolog is being used in the Low-Code Development PlatformGeneXus, which is focused around AI.[citation needed] Open sourcegraph databaseTerminusDB is implemented in Prolog.[28] TerminusDB is designed for collaboratively building and curatingknowledge graphs.

Syntax and semantics

[edit]
Main article:Prolog syntax and semantics

In Prolog, program logic is expressed in terms of relations, and a computation is initiated by running aquery over these relations. Relations and queries are constructed using Prolog's single data type, theterm.[4] Relations are defined byclauses. Given a query, the Prolog engine attempts to find aresolutionrefutation of the negated query. If the negated query can be refuted, i.e., an instantiation for all free variables is found that makes the union of clauses and the singleton set consisting of the negated query false, it follows that the original query, with the found instantiation applied, is alogical consequence of the program. This makes Prolog (and other logic programming languages) particularly useful for database,symbolic mathematics, and language parsing applications. Because Prolog allows impurepredicates, checking thetruth value of certain special predicates may have some deliberateside effect, such as printing a value to the screen. Because of this, the programmer is permitted to use some amount of conventionalimperative programming when the logical paradigm is inconvenient. It has a purely logical subset, called "pure Prolog", as well as a number of extralogical features.

Data types

[edit]

Prolog's singledata type is theterm. Terms are eitheratoms,numbers,variables orcompound terms.[note 1]

  • Anatom is a symbol name starting with a lower case letter or guarded by quotes. Examples of atoms includex,red,'Taco','some atom', and'p(a)'.
  • Numbers can befloats orintegers. Most of the major Prolog systems support arbitrary length integer numbers.
  • Variables are denoted by a string consisting of letters, numbers and underscore characters, and beginning with an upper-case letter or underscore. Variables closely resemble variables in logic in that they are placeholders for arbitrary terms.
  • Acompound term is composed of an atom called a "functor" and a number of "arguments", which are again terms. Compound terms are ordinarily written as a functor followed by a comma-separated list of argument terms, which is contained in parentheses. The number of arguments is called the term'sarity. An atom can be regarded as a compound term witharity zero. An example of a compound term isperson_friends(zelda,[tom,jim]).

Special cases of compound terms:

  • AList is an ordered collection of terms. It is denoted by square brackets with the terms separated by commas, or in the case of the empty list, by[]. For example,[1,2,3,4] or[red,green,blue].
  • Strings: A sequence of characters surrounded by quotes is equivalent to either a list of (numeric) character codes, a list of characters (atoms of length 1), or an atom depending on the value of the Prolog flagdouble_quotes. For example,"to be, or not to be".[29]

Rules and facts

[edit]

Prolog programs describe relations, defined by means of clauses. Pure Prolog is restricted toHorn clauses. Two types of Horn clauses are used to define Prolog programs: rules and facts. A rule is of the form

Head:-Body.

and is read as "Head is true if Body is true". A rule's body consists of calls to predicates, which are called the rule'sgoals. The built-inlogical operator,/2 (meaning an arity 2operator with name,) denotesconjunction of goals, and;/2 denotesdisjunction. Conjunctions and disjunctions can only appear in the body, not in the head of a rule.

Clauses with empty bodies are calledfacts. An example of a fact is:

human(socrates).

which is equivalent to the rule:

human(socrates):-true.

The built-in predicatetrue/0 is always true.

Given the above fact, one can ask:

is socrates a human?

?-human(socrates).Yes

what things are humans?

?-human(X).X=socrates

Clauses with bodies are calledrules. An example of a rule is:

mortal(X):-human(X).

If we add that rule and askwhat things are mortals?

?-mortal(X).X=socrates

Predicates and programs

[edit]

Apredicate (orprocedure definition) is a collection of clauses whose heads have the same name and arity. We use the notationname/arity to refer to predicates. Alogic program is a set of predicates. For example, the following Prolog program, which defines some family relations, has four predicates:

mother_child(trude,sally).father_child(tom,sally).father_child(tom,erica).father_child(mike,tom).sibling(X,Y):-parent_child(Z,X),parent_child(Z,Y),not(X=Y).parent_child(X,Y):-father_child(X,Y).parent_child(X,Y):-mother_child(X,Y).

Predicatefather_child/2 has three clauses, all of which are facts, and predicateparent_child/2 has two clauses, both are rules.

Due to the relational nature of many built-in predicates, they can typically be used in several directions. For example,length/2 can be used to determine the length of a list (length(List, L), given a listList), and to generate a list skeleton of a given length (length(X, 5)), and to generate both list skeletons and their lengths together (length(X, L)). Similarly,append/3 can be used both to append two lists (append(ListA, ListB, X) given listsListA andListB), and to split a given list into parts (append(X, Y, List), given a listList). For this reason, a comparatively small set of library predicates suffices for many Prolog programs.

As a general purpose language, Prolog also provides various built-in predicates to perform routine activities likeinput/output, using graphics and otherwise communicating with the operating system. These predicates are not given a relational meaning and are only useful for the side-effects they exhibit on the system. For example, the predicatewrite/1 displays a term on the screen.

Loops and recursion

[edit]

Iterative algorithms can be implemented by means of recursive predicates.[30]

Consider theparent_child/2 predicate defined in the family relation program above. The following Prolog program defines theancestor relation:

ancestor(X,Y):-parent_child(X,Y).ancestor(X,Y):-parent_child(X,Z),ancestor(Z,Y).

It expresses that X is an ancestor of Y if X is parent of Y or X is parent of an ancestor of Y. It is recursive because it is defined in terms of itself (there is a call to predicateancestor/2 in the body of the second clause).

Execution

[edit]

Execution of a Prolog program is initiated by the user's posting of a single goal, called the query. Logically, the Prolog engine tries to find aresolution refutation of the negated query. The resolution method used by Prolog is calledSLD resolution. If the negated query can be refuted, it follows that the query, with the appropriate variable bindings in place, is a logical consequence of the program. In that case, all generated variable bindings are reported to the user, and the query is said to have succeeded. Operationally, Prolog's execution strategy can be thought of as a generalization of function calls in other languages, one difference being that multiple clause heads can match a given call. In that case, the system creates a choice-point,unifies the goal with the clause head of the first alternative, and continues with the goals of that first alternative. If any goal fails in the course of executing the program, all variable bindings that were made since the most recent choice-point was created are undone, and execution continues with the next alternative of that choice-point. This execution strategy is called chronologicalbacktracking. For example, given the family relation program defined above, the following query will be evaluated to true:

?-sibling(sally,erica).Yes

This is obtained as follows: Initially, the only matching clause-head for the querysibling(sally, erica) is the first one, so proving the query is equivalent to proving the body of that clause with the appropriate variable bindings in place, i.e., the conjunction(parent_child(Z,sally), parent_child(Z,erica)). The next goal to be proved is the leftmost one of this conjunction, i.e.,parent_child(Z, sally). Two clause heads match this goal. The system creates a choice-point and tries the first alternative, whose body isfather_child(Z, sally). This goal can be proved using the factfather_child(tom, sally), so the bindingZ = tom is generated, and the next goal to be proved is the second part of the above conjunction:parent_child(tom, erica). Again, this can be proved by the corresponding fact. Since all goals could be proved, the query succeeds. Since the query contained no variables, no bindings are reported to the user. A query with variables, like:

?-father_child(Father,Child).

enumerates all valid answers on backtracking.

Notice that with the code as stated above, the query?- sibling(sally, sally). also succeeds. One would insert additional goals to describe the relevant restrictions, if desired.

Negation

[edit]

The built-in Prolog predicate\+/1 providesnegation as failure, which allows fornon-monotonic reasoning. The goal\+ illegal(X) in the rule

legal(X):-\+illegal(X).

is evaluated as follows: Prolog attempts to proveillegal(X). If a proof for that goal can be found, the original goal (i.e.,\+ illegal(X)) fails. If no proof can be found, the original goal succeeds. Therefore, the\+/1 prefix operator is called the "not provable" operator, since the query?- \+ Goal. succeeds if Goal is not provable. This kind of negation issound if its argument is"ground" (i.e. contains no variables). Soundness is lost if the argument contains variables and the proof procedure is complete. In particular, the query?- legal(X). now cannot be used to enumerate all things that are legal.

Programming in Prolog

[edit]

In Prolog, loading code is referred to asconsulting. Prolog can be used interactively by entering queries at the Prolog prompt?-. If there is no solution, Prolog writesno. If a solution exists then it is printed. If there are multiple solutions to the query, then these can be requested by entering a semi-colon;. There are guidelines on good programming practice to improve code efficiency, readability and maintainability.[31]

Here follow some example programs written in Prolog.

Hello World

[edit]

Example of a basic query in a couple of popular Prolog dialects:

SWI-PrologGNU Prolog
?-write('Hello World!'),nl.HelloWorld!true.?-
|?-write('Hello World!'),nl.HelloWorld!yes|?-

This comparison shows the prompt ("?-" vs "| ?-") and resolution status ("true". vs "yes", "false". vs "no") can differ from one Prolog implementation to another.

Compiler optimization

[edit]

Any computation can be expressed declaratively as a sequence of state transitions. As an example, anoptimizing compiler with three optimization passes could be implemented as a relation between an initial program and its optimized form:

program_optimized(Prog0,Prog):-optimization_pass_1(Prog0,Prog1),optimization_pass_2(Prog1,Prog2),optimization_pass_3(Prog2,Prog).

or equivalently usingDCG notation:

program_optimized-->optimization_pass_1,optimization_pass_2,optimization_pass_3.

Quicksort

[edit]

Thequicksort sorting algorithm, relating a list to its sorted version:

partition([],_,[],[]).partition([X|Xs],Pivot,Smalls,Bigs):-(X@<Pivot->Smalls=[X|Rest],partition(Xs,Pivot,Rest,Bigs);Bigs=[X|Rest],partition(Xs,Pivot,Smalls,Rest)).quicksort([])-->[].quicksort([X|Xs])-->{partition(Xs,X,Smaller,Bigger)},quicksort(Smaller),[X],quicksort(Bigger).

Design patterns of Prolog

[edit]

Adesign pattern is a general reusable solution to a commonly occurring problem insoftware design. Some design patterns in Prolog are skeletons, techniques,[32][33] cliches,[34] program schemata,[35] logic description schemata,[36] andhigher-order programming.[37]

Higher-order programming

[edit]
Main articles:Higher-order logic andHigher-order programming

A higher-order predicate is a predicate that takes one or more other predicates as arguments. Although support for higher-order programming takes Prolog outside the domain of first-order logic, which does not allow quantification over predicates,[38] ISO Prolog now has some built-in higher-order predicates such ascall/1,call/2,call/3,findall/3,setof/3, andbagof/3.[39] Furthermore, since arbitrary Prolog goals can be constructed and evaluated at run-time, it is easy to write higher-order predicates likemaplist/2, which applies an arbitrary predicate to each member of a given list, andsublist/3, which filters elements that satisfy a given predicate, also allowing forcurrying.[37]

To convert solutions from temporal representation (answer substitutions on backtracking) to spatial representation (terms), Prolog has various all-solutions predicates that collect all answer substitutions of a given query in a list. This can be used forlist comprehension. For example,perfect numbers equal the sum of their proper divisors:

perfect(N):-between(1,inf,N),UisN//2,findall(D,(between(1,U,D),NmodD=:=0),Ds),sumlist(Ds,N).

This can be used to enumerate perfect numbers, and to check if a number is perfect.

As another example, the predicatemaplist applies a predicateP to all corresponding positions in a pair of lists:

maplist(_,[],[]).maplist(P,[X|Xs],[Y|Ys]):-call(P,X,Y),maplist(P,Xs,Ys).

WhenP is a predicate that for allX,P(X,Y) unifiesY with a single unique value,maplist(P, Xs, Ys) is equivalent to applying themap function infunctional programming asYs = map(Function, Xs).

Higher-order programming style in Prolog was pioneered inHiLog andλProlog.

Modules

[edit]

Forprogramming in the large, Prolog provides amodule system, which is in the ISO Standard.[40]However, while most Prolog systems support structuring the code into modules, virtually no implementation adheres to the modules part of the ISO standard. Instead, mostProlog systems have decided to support asde-facto module standard theQuintus/SICStus module system. However, further convenience predicates concerning modules are provided by some implementations only and often have subtle differences in their semantics.[41]

Some systems chose to implement module concepts as source-to-source compilation into base ISO Prolog, as is the case ofLogtalk.[23] GNU Prolog initially diverted from ISO modules, opting instead forContextual Logic Programming, in which unit (module) loading and unloading can be made dynamically.[42]Ciao designed a strict module system that, while being basically compatible with thede-facto standard used by other Prolog systems, is amenable to precise static analysis, supports term hiding, and facilitates programming in the large.[43]XSB takes a different approach and offers anatom-based module system.[44] The latter two Prolog systems allow controlling thevisibility of terms in addition to that of predicates.[41]

Parsing

[edit]
Main articles:Prolog syntax and semantics § Definite clause grammars, andDefinite clause grammar

There is a special notation calleddefinite clause grammars (DCGs). A rule defined via-->/2 instead of:-/2 is expanded by the preprocessor (expand_term/2, a facility analogous to macros in other languages) according to a few straightforward rewriting rules, resulting in ordinary Prolog clauses. Most notably, the rewriting equips the predicate with two additional arguments, which can be used to implicitly thread state around,[clarification needed] analogous tomonads in other languages. DCGs are often used to write parsers or list generators, as they also provide a convenient interface to difference lists.

Meta-interpreters and reflection

[edit]

Prolog is ahomoiconic language and provides many facilities forreflective programming (reflection). Its implicit execution strategy makes it possible to write a concisemeta-circular evaluator (also calledmeta-interpreter) for pure Prolog code:

solve(true).solve((Subgoal1,Subgoal2)):-solve(Subgoal1),solve(Subgoal2).solve(Head):-clause(Head,Body),solve(Body).

wheretrue represents an empty conjunction, andclause(Head, Body) unifies with clauses in the database of the formHead :- Body.

Since Prolog programs are themselves sequences of Prolog terms (:-/2 is an infixoperator) that are easily read and inspected using built-in mechanisms (likeread/1), it is possible to write customized interpreters that augment Prolog with domain-specific features. For example, Sterling and Shapiro present a meta-interpreter that performs reasoning with uncertainty, reproduced here with slight modifications:[45]: 330 

solve(true,1):-!.solve((Subgoal1,Subgoal2),Certainty):-!,solve(Subgoal1,Certainty1),solve(Subgoal2,Certainty2),Certaintyismin(Certainty1,Certainty2).solve(Goal,1):-builtin(Goal),!,Goal.solve(Head,Certainty):-clause_cf(Head,Body,Certainty1),solve(Body,Certainty2),CertaintyisCertainty1*Certainty2.

This interpreter uses a table of built-in Prolog predicates of the form[45]: 327 

builtin(AisB).builtin(read(X)).% etc.

and clauses represented asclause_cf(Head, Body, Certainty). Given those, it can be called assolve(Goal, Certainty) to executeGoal and obtain a measure of certainty about the result.

Turing completeness

[edit]

Pure Prolog is based on a subset of first-orderpredicate logic,Horn clauses, which isTuring-complete. Turing completeness of Prolog can be shown by using it to simulate a Turing machine:

turing(Tape0,Tape):-perform(q0,[],Ls,Tape0,Rs),reverse(Ls,Ls1),append(Ls1,Rs,Tape).perform(qf,Ls,Ls,Rs,Rs):-!.perform(Q0,Ls0,Ls,Rs0,Rs):-symbol(Rs0,Sym,RsRest),once(rule(Q0,Sym,Q1,NewSym,Action)),action(Action,Ls0,Ls1,[NewSym|RsRest],Rs1),perform(Q1,Ls1,Ls,Rs1,Rs).symbol([],b,[]).symbol([Sym|Rs],Sym,Rs).action(left,Ls0,Ls,Rs0,Rs):-left(Ls0,Ls,Rs0,Rs).action(stay,Ls,Ls,Rs,Rs).action(right,Ls0,[Sym|Ls0],[Sym|Rs],Rs).left([],[],Rs0,[b|Rs0]).left([L|Ls],Ls,Rs,[L|Rs]).

A simple example Turing machine is specified by the facts:

rule(q0,1,q0,1,right).rule(q0,b,qf,1,stay).

This machine performs incrementation by one of a number in unary encoding: It loops over any number of "1" cells and appends an additional "1" at the end. Example query and result:

?-turing([1,1,1],Ts).Ts=[1,1,1,1];

This illustrates how any computation can be expressed declaratively as a sequence of state transitions, implemented in Prolog as a relation between successive states of interest.

Implementation

[edit]
Further information:Comparison of Prolog implementations
Prolog Heritage.
Systems with a dark gray background are not supported any more. Arrows denote influences and inspiration of systems. Quick legend: JIT = "Just in Time Compiler", JVM = "Java Virtual Machine", TOAM = "Tree-Oriented Abstract Machine"

ISO Prolog

[edit]

TheInternational Organization for Standardization (ISO) Prologtechnical standard consists of two parts. ISO/IEC 13211-1,[39][46] published in 1995, aims to standardize the existing practices of the many implementations of the core elements of Prolog. It has clarified aspects of the language that were previously ambiguous and leads to portable programs. There are three corrigenda: Cor.1:2007,[47] Cor.2:2012,[48] and Cor.3:2017.[49] ISO/IEC 13211-2,[39] published in 2000, adds support for modules to the standard. The standard is maintained by theISO/IEC JTC1/SC22/WG17[50] working group. ANSI X3J17 is the US Technical Advisory Group for the standard.[51]

Compilation

[edit]

For efficiency, Prolog code is typically compiled to abstract machine code, often influenced by the register-basedWarren Abstract Machine (WAM) instruction set.[52] Some implementations employabstract interpretation to derive type and mode information of predicates at compile time, or compile to real machine code for high performance.[53] Devising efficient implementation methods for Prolog code is a field of active research in the logic programming community, and various other execution methods are employed in some implementations. These includeclause binarization andstack-based virtual machines.[citation needed]

Tail recursion

[edit]

Prolog systems typically implement a well-known optimization method calledtail call optimization (TCO) for deterministic predicates exhibitingtail recursion or, more generally, tail calls: A clause's stack frame is discarded before performing a call in a tail position. Therefore, deterministic tail-recursive predicates are executed with constant stack space, like loops in other languages.

Term indexing

[edit]
Main article:Term indexing

Finding clauses that are unifiable with a term in a query is linear in the number of clauses.Term indexing uses adata structure that enablessub-linear-time lookups.[54] Indexing only affects program performance, it does not affect semantics. Most Prologs only use indexing on the first term, as indexing on all terms is expensive, but techniques based onfield-encoded words orsuperimposed codewords provide fast indexing across the full query and head.[55][56]

Hashing

[edit]

Some Prolog systems, such asWIN-PROLOG and SWI-Prolog, now implement hashing to help handle large datasets more efficiently. This tends to yield very large performance gains when working with large corpora such asWordNet.

Tabling

[edit]
Main article:Tabled logic programming

Some Prolog systems, (B-Prolog,XSB,SWI-Prolog,YAP, andCiao), implement amemoization method calledtabling, which frees the user from manually storing intermediate results. Tabling is aspace–time tradeoff; execution time can be reduced by using more memory to store intermediate results:[57][58]

Subgoals encountered in a query evaluation are maintained in a table, along with answers to these subgoals. If a subgoal is re-encountered, the evaluation reuses information from the table rather than re-performing resolution against program clauses.[59]

Tabling can be extended in various directions. It can support recursive predicates throughSLG resolution or linear tabling. In a multi-threaded Prolog system tabling results could be kept private to a thread or shared among all threads. And in incremental tabling, tabling might react to changes.

Implementation in hardware

[edit]

During theFifth Generation Computer Systems project, there were attempts to implement Prolog in hardware with the aim of achieving faster execution with dedicated architectures.[60][61][62] Furthermore, Prolog has a number of properties that may allow speed-up through parallel execution.[63] A more recent approach has been to compile restricted Prolog programs to afield-programmable gate array (FPGA).[64] However, rapid progress in general-purpose hardware has consistently overtaken more specialised architectures.

In 1982, computers operated at around 10,000 to 100,000 LIPS [logical inferences per second]. The FGCS planned to produce computers operating at 0.1 to 1 GLIPS.[65] The Institute for New Generation Computer Technology documents estimated that 1 LIP took about 100 operations on a conventional computer. The plan was to produce at the end of the project (in 1992) a machine with 1000 processors achieving 1 GLIPS, implying at least 1 MLIPS per processor.[66]

Sega implemented Prolog for use with theSega AI Computer, released for the Japanese market in 1986. Prolog was used for readingnatural language inputs, in theJapanese language, via atouch pad.[67]

Extensions

[edit]

Various implementations have been developed from Prolog to extend logic programming abilities in many directions. These includetypes, modes,constraint logic programming (CLP),object-oriented logic programming (OOLP), concurrency,linear logic (LLP), functional andhigher-order logic programming abilities, plus interoperability withknowledge bases:

Types

[edit]

Prolog is an untyped language. Attempts to introduce and extend Prolog with types began in the 1980s,[68][69] and continue as of 2008[update].[70] Type information is useful not only fortype safety but also for reasoning about Prolog programs.[71]

Modes

[edit]
Mode specifierInterpretation
+nonvar on entry
-var on entry
?Not specified

The syntax of Prolog does not specify which arguments of a predicate are inputs and which are outputs.[72] However, this information is significant and it is recommended that it be included in the comments.[73] Modes provide valuable information when reasoning about Prolog programs[71] and can also be used to accelerate execution.[74]

Constraints

[edit]

Constraint logic programming extends Prolog to include concepts fromconstraint satisfaction.[75][76] A constraint logic program allows constraints in the body of clauses, such as:A(X,Y) :- X+Y>0. It is suited to large-scalecombinatorial optimisation problems[77] and is thus useful for applications in industrial settings, such as automated time-tabling andproduction scheduling. Most Prolog systems ship with at least one constraint solver for finite domains, and often also with solvers for other domains likerational numbers.

Object-orientation

[edit]

Flora-2 is an object-oriented knowledge representation and reasoning system based onF-logic and incorporatesHiLog,Transaction logic, anddefeasible reasoning.

Logtalk is an object-oriented logic programming language that can use most Prolog implementations as a back-end compiler. As a multi-paradigm language, it includes support for both prototypes and classes.

Oblog is a small, portable, object-oriented extension to Prolog by Margaret McDougall of EdCAAD, University of Edinburgh.

Objlog was a frame-based language combining objects and Prolog II from CNRS, Marseille, France.

Prolog++ was developed byLogic Programming Associates and first released in 1989 for MS-DOS PCs. Support for other platforms was added, and a second version was released in 1995. A book about Prolog++ by Chris Moss was published by Addison-Wesley in 1994.

Visual Prolog is a multi-paradigm language with interfaces, classes, implementations and object expressions.

Graphics

[edit]

Prolog systems that provide agraphics library areSWI-Prolog,[78]Visual Prolog,WIN-PROLOG, andB-Prolog.

Concurrency

[edit]

Prolog-MPI is an open-sourceSWI-Prolog extension fordistributed computing over theMessage Passing Interface.[79] Also there are various concurrent Prolog programming languages.[80]

Web programming

[edit]

Some Prolog implementations, notablyVisual Prolog,SWI-Prolog andCiao, supportserver-sideweb programming with support for web protocols,HTML andXML.[81] There are also extensions to supportsemantic web formats such asResource Description Framework (RDF) andWeb Ontology Language (OWL).[82][83] Prolog has also been suggested as aclient-side language.[84] In addition, Visual Prolog supportsJSON-RPC andWebsockets.

Other

[edit]
  • F-logic extends Prolog with frames/objects forknowledge representation.
  • Transaction logic extends Prolog with a logical theory of state-changing update operators. It has both a model-theoretic and procedural semantics.
  • OW Prolog has been created in order to answer Prolog's lack of graphics and interface.

Interfaces to other languages

[edit]

Frameworks exist which can bridge between Prolog and other languages:

  • TheLPA Intelligence Server allows embeddingLPA Prolog for Windows in other programming languages, including:C,C++,C#,Java,Visual Basic (VB),Delphi,.NET,Lua,Python, and others. It exploits the dedicated string data type which LPA Prolog provides
  • TheLogic Server Application Programming Interface (API) allows both the extension and embedding of Prolog inC,C++,Java,Visual Basic (VB),Delphi,.NET, and any language or environment which can call a .dll or .so. It is implemented forAmzi! Prolog + Logic Server but the API specification can be made available for any implementation.
  • JPL is a bi-directional Java Prolog bridge which ships with SWI-Prolog by default, allowing Java and Prolog to call each other (recursively). It is known to have good concurrency support and is under active development.
  • InterProlog, a programminglibrary bridge betweenJava and Prolog, implementing bi-directional predicate/method calling between both languages. Java objects can be mapped into Prolog terms and vice versa. Allows the development ofgraphical user interfaces (GUIs) and other functions in Java while leaving logic processing in the Prolog layer. SupportsXSB andSWI-Prolog.
  • Prova provides native syntax integration with Java, agent messaging and reaction rules. Prova positions itself as a rule-based scripting (RBS) system for middleware. The language breaks new ground in combiningimperative anddeclarative programming.
  • PROL An embeddable Prolog engine for Java. It includes a small IDE and a few libraries.
  • GNU Prolog for Java is an implementation of ISO Prolog as a Java library (gnu.prolog)
  • Ciao provides interfaces to C,C++, Java, and relational databases.
  • C#-Prolog is a Prolog interpreter written in (managed) C#. Can easily be integrated in C# programs. Characteristics: reliable and fairly fast interpreter, command line interface, Windows-interface, builtin DCG, XML-predicates, SQL-predicates, extendible. The complete source code is available, including a parser generator that can be used for adding special purpose extensions.
  • A Warren Abstract Machine for PHP A Prolog compiler and interpreter in PHP 5.3. A library that can be used standalone or within Symfony2.1 framework which was translated fromStephan Buettcher's work in Java which can be found [herestefan.buettcher.org/cs/wam/]
  • tuProlog is a lightweight Prolog system for distributed applications and infrastructures, intentionally designed around a minimal core, to be either statically or dynamically configured by loading/unloading libraries of predicates. tuProlog natively supports multi-paradigm programming, providing a clean, seamless integration model between Prolog and mainstream object-oriented languages, namely Java, for tuProlog Java version, and any .NET-based language (C#, F#..), for tuProlog .NET version.
  • Janus is a bi-directional interface between Prolog and Python using portable low-level primitives. It was initially developed for XSB by Anderson and Swift,[85] but has been adopted as a joint initiative by the XSB, Ciao and SWI-Prolog teams.

See also

[edit]

Related languages

[edit]
  • TheGödel language is a strongly typed implementation ofconcurrent constraint logic programming. It is built onSICStus Prolog.
  • Visual Prolog, formerly named PDC Prolog and Turbo Prolog, is astrongly typedobject-oriented dialect of Prolog, which is very different from standard Prolog. As Turbo Prolog, it was marketed by Borland, but is now developed and marketed by the Danish firm Prolog Development Center (PDC) that originally produced it.
  • Datalog is a subset of Prolog. It is limited to relationships that may be stratified and does not allow compound terms. In contrast to Prolog, Datalog is notTuring-complete.
  • Mercury is an offshoot of Prolog geared toward software engineering in the large with a static, polymorphic type system, as well as a mode and determinism system.
  • GraphTalk is a proprietary implementation of Warren's Abstract Machine, with additional object-oriented properties.
  • In some ways[which?] Prolog is a subset ofPlanner. The ideas in Planner were later further developed in theScientific Community Metaphor.
  • AgentSpeak is a variant of Prolog for programming agent behavior inmulti-agent systems.
  • Erlang began life with a Prolog-based implementation and maintains much of Prolog's unification-based syntax.
  • Pilog is a declarative language built on top ofPicoLisp, that has the semantics of Prolog, but uses the syntax of Lisp.
  • λProlog is an extension of core Prolog that features polymorphic typing, modular programming, and higher-order programming, including direct support for terms with variable-binding operators through so-called λ-tree syntax and higher-order pattern unification.

Notes

[edit]
  1. ^ The Prolog terminology differs from that oflogic. A term of Prolog is (depending on the context) aterm or anatomic formula of logic. An atom in a standard logic terminology means anatomic formula; an atom of Prolog (depending on the context) is a constant, function symbol or predicate symbol of logic.

References

[edit]
  1. ^Clocksin, William F.; Mellish, Christopher S. (2003).Programming in Prolog. Berlin; New York: Springer-Verlag.ISBN 978-3-540-00678-7.
  2. ^Bratko, Ivan (2012).Prolog programming for artificial intelligence (4th ed.). Harlow, England; New York: Addison Wesley.ISBN 978-0-321-41746-6.
  3. ^Covington, Michael A. (1994).Natural language processing for Prolog programmers. Englewood Cliffs, N.J.: Prentice Hall.ISBN 978-0-13-629213-5.
  4. ^abLloyd, J. W. (1984).Foundations of logic programming. Berlin: Springer-Verlag.ISBN 978-3-540-13299-8.
  5. ^SeeLogic programming § History.
  6. ^Stickel, M. E. (1988). "A prolog technology theorem prover: Implementation by an extended prolog compiler".Journal of Automated Reasoning.4 (4):353–380.CiteSeerX 10.1.1.47.3057.doi:10.1007/BF00297245.S2CID 14621218.
  7. ^Merritt, Dennis (1989).Building expert systems in Prolog. Berlin: Springer-Verlag.ISBN 978-0-387-97016-5.
  8. ^Felty, Amy. "A logic programming approach to implementing higher-order term rewriting." Extensions of Logic Programming (1992): 135-161.
  9. ^Kent D. Lee (19 January 2015).Foundations of Programming Languages. Springer. pp. 298–.ISBN 978-3-319-13314-0.
  10. ^Ute Schmid (21 August 2003).Inductive Synthesis of Functional Programs: Universal Planning, Folding of Finite Programs, and Schema Abstraction by Analogical Reasoning. Springer Science & Business Media.ISBN 978-3-540-40174-2.
  11. ^abcAdam Lally; Paul Fodor (31 March 2011)."Natural Language Processing With Prolog in the IBM Watson System". Association for Logic Programming. Archived fromthe original on 3 September 2014. Retrieved13 June 2014. See alsoWatson (computer).
  12. ^"Question answering: from partitions to Prolog".
  13. ^"NLProlog: Reasoning with Weak Unification for Question Answering in Natural Language"(PDF).
  14. ^Fernando C. N. Pereira; Stuart M. Shieber (2005).Prolog and Natural Language Analysis. Microtome.
  15. ^ Colmerauer, A. and Roussel, P., 1996. The birth of Prolog. In History of programming languages---II (pp. 331-367).
  16. ^Kowalski, R. A. (1988)."The early years of logic programming"(PDF).Communications of the ACM.31: 38.doi:10.1145/35043.35046.S2CID 12259230.
  17. ^Colmerauer, A.; Roussel, P. (1993)."The birth of Prolog"(PDF).ACM SIGPLAN Notices.28 (3): 37.doi:10.1145/155360.155362.
  18. ^"Prolog: a brief history". Retrieved21 November 2021.
  19. ^Pountain, Dick (October 1984)."POP and SNAP".Byte. p. 381. Retrieved23 October 2013.
  20. ^"Computer science - Programming Languages, Syntax, Algorithms | Britannica".www.britannica.com. Retrieved2023-07-12.
  21. ^abLogic programming for the real world. Zoltan Somogyi, Fergus Henderson, Thomas Conway, Richard O'Keefe. Proceedings of the ILPS'95 Postconference Workshop on Visions for the Future of Logic Programming.
  22. ^"FAQ: Prolog Resource Guide 1/2 [Monthly posting]Section - [1-8] The Prolog 1000 Database".Faqs.org.
  23. ^abMoura, Paulo (August 2004),"Logtalk",Association of Logic Programming,17 (3), archived fromthe original on 2010-04-12, retrieved2010-02-16
  24. ^Jan Wielemaker and Vıtor Santos Costa:Portability of Prolog programs: theory and case-studies.CICLOPS-WLPE Workshop 2010Archived 2010-07-16 at theWayback Machine.
  25. ^abKiselyov, Oleg; Kameyama, Yukiyoshi (2014).Re-thinking Prolog. Proc. 31st meeting of the Japan Society for Software Science and Technology.
  26. ^Franzen, Torkel (1994),"Declarative vs procedural",Association of Logic Programming,7 (3)
  27. ^Dantsin, Evgeny; Eiter, Thomas; Gottlob, Georg; Voronkov, Andrei (2001). "Complexity and Expressive Power of Logic Programming".ACM Computing Surveys.33 (3):374–425.CiteSeerX 10.1.1.616.6372.doi:10.1145/502807.502810.S2CID 518049.
  28. ^terminusdb/terminusdb, TerminusDB, 2020-12-13, retrieved2020-12-15
  29. ^ISO/IEC 13211-1:1995 Prolog, 6.3.7 Terms - double quoted list notation.International Organization for Standardization, Geneva.
  30. ^Carlsson, Mats (27 May 2014).SICStus Prolog User's Manual 4.3: Core reference documentation. BoD – Books on Demand.ISBN 978-3-7357-3744-1 – via Google Books.
  31. ^Covington, Michael A.; Bagnara, Roberto;O'Keefe, Richard A.; Wielemaker, Jan; Price, Simon (2011). "Coding guidelines for Prolog".Theory and Practice of Logic Programming.12 (6):889–927.arXiv:0911.2899.doi:10.1017/S1471068411000391.S2CID 438363.
  32. ^Kirschenbaum, M.; Sterling, L.S. (1993). "Applying techniques to skeletons". In Jacquet, J. M. J. (ed.).Constructing logic programs. Wiley Professional Computing. John Wiley & Sons. pp. 127–140.CiteSeerX 10.1.1.56.7278.ISBN 978-0-471-93789-0.
  33. ^Sterling, Leon (2002).Computational Logic: Logic Programming and Beyond. Vol. 2407. pp. 17–26.doi:10.1007/3-540-45628-7_15.ISBN 978-3-540-43959-2.
  34. ^D. Barker-Plummer. Cliche programming in Prolog. In M. Bruynooghe, editor, Proc. Second Workshop on Meta-Programming in Logic, pages 247--256. Dept. of Comp. Sci., Katholieke Univ. Leuven, 1990.
  35. ^Gegg-harrison, T. S. (1995).Representing Logic Program Schemata in Prolog. Procs Twelfth International Conference on Logic Programming. pp. 467–481.
  36. ^Deville, Yves (1990).Logic programming: systematic program development. Wokingham, England: Addison-Wesley.ISBN 978-0-201-17576-9.
  37. ^abNaish, Lee (1996). Higher-order logic programming in Prolog (Report). Department of Computer Science,University of Melbourne.CiteSeerX 10.1.1.35.4505.
  38. ^"With regard to Prolog variables, variables only in the head are implicitly universally quantified, and those only in the body are implicitly existentially quantified". Retrieved2013-05-04.
  39. ^abcISO/IEC 13211: Information technology – Programming languages – Prolog.International Organization for Standardization, Geneva.
  40. ^ISO/IEC 13211-2: Modules.
  41. ^abPhilipp Körner; Michael Leuschel; João Barbosa; Vítor Santos Costa; Verónica Dahl; Manuel V. Hermenegildo; Jose F. Morales; Jan Wielemaker; Daniel Diaz; Salvador Abreu; Giovanni Ciatto (November 2022), "Fifty Years of Prolog and Beyond",Theory and Practice of Logic Programming,22 (6):776–858,doi:10.1017/S1471068422000102,hdl:10174/33387
  42. ^Abreu, Salvador; Nogueira, Vitor (2006). "Using a Logic Programming Language with Persistence and Contexts".Declarative Programming for Knowledge Management. Lecture Notes in Computer Science. Vol. 4369. pp. 38–47.doi:10.1007/11963578_4.ISBN 978-3-540-69233-1.
  43. ^Cabeza, Daniel; Hermenegildo, Manuel (2000). "A New Module System for Prolog".Computational Logic — CL 2000. Lecture Notes in Computer Science. Vol. 1861. pp. 131–148.doi:10.1007/3-540-44957-4_9.ISBN 978-3-540-67797-0.
  44. ^Sagonas, Konstantinos; Swift, Terrance; Warren, David S. (1994). "XSB as an efficient deductive database engine".ACM SIGMOD Record.23 (2):442–453.doi:10.1145/191843.191927.
  45. ^abShapiro, Ehud Y.; Sterling, Leon (1994).The Art of Prolog: Advanced Programming Techniques. Cambridge, Massachusetts: MIT Press.ISBN 978-0-262-19338-2.
  46. ^Ed-Dbali, A.; Deransart, Pierre; Cervoni, L. (1996).Prolog: the standard: reference manual. Berlin: Springer.ISBN 978-3-540-59304-1.
  47. ^"ISO/IEC 13211-1:1995/Cor 1:2007".ISO.
  48. ^"ISO/IEC 13211-1:1995/Cor 2:2012".ISO.
  49. ^"ISO/IEC 13211-1:1995/Cor 3:2017".ISO.
  50. ^"ISO/IEC JTC1 SC22 WG17".[permanent dead link]
  51. ^"X3J17 and the Prolog Standard". Archived fromthe original on 2009-08-23. Retrieved2009-10-02.
  52. ^David H. D. Warren."An abstract Prolog instruction set". Technical Note 309,SRI International, Menlo Park, CA, October 1983.
  53. ^Van Roy, P.; Despain, A. M. (1992). "High-performance logic programming with the Aquarius Prolog compiler".Computer.25:54–68.doi:10.1109/2.108055.S2CID 16447071.
  54. ^Graf, Peter (1995).Term indexing. Springer.ISBN 978-3-540-61040-3.
  55. ^Wise, Michael J.; Powers, David M. W. (1986).Indexing Prolog Clauses via Superimposed Code Words and Field Encoded Words.International Symposium on Logic Programming. pp. 203–210.
  56. ^Colomb, Robert M. (1991). "Enhancing unification in PROLOG through clause indexing".The Journal of Logic Programming.10:23–44.doi:10.1016/0743-1066(91)90004-9.
  57. ^Swift, T. (1999). "Tabling for non-monotonic programming".Annals of Mathematics and Artificial Intelligence.25 (3/4):201–240.doi:10.1023/A:1018990308362.S2CID 16695800.
  58. ^Zhou, Neng-Fa; Sato, Taisuke (2003)."Efficient Fixpoint Computation in Linear Tabling"(PDF).Proceedings of the 5th ACM SIGPLAN International Conference on Principles and Practice of Declarative Programming:275–283.
  59. ^Swift, T.; Warren, D. S. (2011). "XSB: Extending Prolog with Tabled Logic Programming".Theory and Practice of Logic Programming.12 (1–2):157–187.arXiv:1012.5123.doi:10.1017/S1471068411000500.S2CID 6153112.
  60. ^Abe, S.; Bandoh, T.; Yamaguchi, S.; Kurosawa, K.; Kiriyama, K. (1987). "High performance integrated Prolog processor IPP".Proceedings of the 14th annual international symposium on Computer architecture - ISCA '87. p. 100.doi:10.1145/30350.30362.ISBN 978-0-8186-0776-9.S2CID 10283148.
  61. ^Robinson, Ian (1986).A Prolog processor based on a pattern matching memory device. Third International Conference on Logic Programming. Lecture Notes in Computer Science. Vol. 225. Springer. pp. 172–179.doi:10.1007/3-540-16492-8_73.ISBN 978-3-540-16492-0.
  62. ^Taki, K.; Nakajima, K.; Nakashima, H.; Ikeda, M. (1987)."Performance and architectural evaluation of the PSI machine".ACM SIGPLAN Notices.22 (10): 128.doi:10.1145/36205.36195.
  63. ^Gupta, G.; Pontelli, E.; Ali, K. A. M.; Carlsson, M.; Hermenegildo, M. V. (2001)."Parallel execution of prolog programs: a survey".ACM Transactions on Programming Languages and Systems.23 (4): 472.doi:10.1145/504083.504085.S2CID 2978041.
  64. ^"Statically Allocated Systems".
  65. ^Bramer, M. A.; Bramer, Dawn (1984).The fifth generation: an annotated bibliography. Wokingham, England ; Reading, Mass: Addison-Wesley. p. 6.ISBN 978-0-201-14427-7.
  66. ^Feigenbaum, Edward; Shrobe, Howard (1993-07-01)."The Japanese national Fifth Generation project: Introduction, survey, and evaluation".Future Generation Computer Systems. FGCS Conference.9 (2):105–117.doi:10.1016/0167-739X(93)90003-8.ISSN 0167-739X.
  67. ^"Software that takes games seriously".New Scientist.Reed Business Information. March 26, 1987. p. 34 – viaGoogle Books.[permanent dead link]
  68. ^Mycroft, A.; O'Keefe, R. A. (1984). "A polymorphic type system for prolog".Artificial Intelligence.23 (3): 295.doi:10.1016/0004-3702(84)90017-1.
  69. ^Pfenning, Frank (1992).Types in logic programming. Cambridge, Massachusetts: MIT Press.ISBN 978-0-262-16131-2.
  70. ^Schrijvers, Tom; Santos Costa, Vitor; Wielemaker, Jan; Demoen, Bart (2008)."Towards Typed Prolog". InMaría García de la Banda; Enrico Pontelli (eds.).Logic programming: 24th international conference, ICLP 2008, Udine, Italy, December 9-13, 2008: proceedings. Lecture Notes in Computer Science. Vol. 5366. pp. 693–697.doi:10.1007/978-3-540-89982-2_59.ISBN 978-3-540-89982-2.
  71. ^abApt, K. R.; Marchiori, E. (1994)."Reasoning about Prolog programs: From modes through types to assertions".Formal Aspects of Computing.6 (S1): 743.CiteSeerX 10.1.1.57.395.doi:10.1007/BF01213601.S2CID 12235465.
  72. ^O'Keefe, Richard A. (1990).The craft of Prolog. Cambridge, Massachusetts: MIT Press.ISBN 978-0-262-15039-2.
  73. ^Covington, Michael; Bagnara, Roberto; et al. (2010). "Coding guidelines for Prolog".arXiv:0911.2899 [cs.PL].
  74. ^Roy, P.; Demoen, B.; Willems, Y. D. (1987)."Improving the execution speed of compiled Prolog with modes, clause selection, and determinism".Tapsoft '87. Lecture Notes in Computer Science. Vol. 250. pp. 111.doi:10.1007/BFb0014976.ISBN 978-3-540-17611-4.
  75. ^Jaffar, J. (1994)."Constraint logic programming: a survey".The Journal of Logic Programming.19–20:503–581.doi:10.1016/0743-1066(94)90033-7.
  76. ^Colmerauer, Alain (1987). "Opening the Prolog III Universe".Byte. August.
  77. ^Wallace, M. (2002). "Constraint Logic Programming".Computational Logic: Logic Programming and Beyond. Lecture Notes in Computer Science. Vol. 2407. pp. 512–556.doi:10.1007/3-540-45628-7_19.ISBN 978-3-540-45628-5.
  78. ^"XPCE: the SWI-Prolog native GUI library".swi-prolog.org.
  79. ^"prolog-mpi". Apps.lumii.lv. Retrieved2010-09-16.
  80. ^Ehud Shapiro.The family of concurrent logic programming languagesACM Computing Surveys. September 1989.
  81. ^Wielemaker, J.; Huang, Z.; Van Der Meij, L. (2008)."SWI-Prolog and the web"(PDF).Theory and Practice of Logic Programming.8 (3): 363.doi:10.1017/S1471068407003237.S2CID 5404048.
  82. ^Wielemaker, Jan; Hildebrand, Michiel; van Ossenbruggen, Jacco (2007), Heymans, S.; Polleres, A.; Ruckhaus, E.; Pearse, D.; Gupta, G. (eds.),"Using {Prolog} as the fundament for applications on the semantic web"(PDF),Proceedings of the 2nd Workshop on Applications of Logic Programming and to the Web, Semantic Web and Semantic Web Services, CEUR Workshop Proceedings, vol. 287, Porto, Portugal: CEUR-WS.org, pp. 84–98
  83. ^Processing OWL2 Ontologies using Thea: An Application of Logic Programming. Vangelis Vassiliadis, Jan Wielemaker and Chris Mungall. Proceedings of the 5th International Workshop on OWL: Experiences and Directions (OWLED 2009), Chantilly, VA, United States, October 23–24, 2009
  84. ^Loke, S. W.; Davison, A. (2001). "Secure Prolog-based mobile code".Theory and Practice of Logic Programming.1 (3): 321.arXiv:cs/0406012.CiteSeerX 10.1.1.58.6610.doi:10.1017/S1471068401001211.S2CID 11754347.
  85. ^Andersen, C. and Swift, T., 2023. The Janus System: a bridge to new prolog applications. In Prolog: The Next 50 Years (pp. 93-104). Cham: Springer Nature Switzerland.

Further reading

[edit]

External links

[edit]
1–9999
10000–19999
20000–29999
30000+
National
Other
Retrieved from "https://en.wikipedia.org/w/index.php?title=Prolog&oldid=1316024733"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp