Презентация Prolog. A general-purpose logic programming language associated with artificial intelligence and computational linguistics онлайн

На нашем сайте вы можете скачать и просмотреть онлайн доклад-презентацию на тему Prolog. A general-purpose logic programming language associated with artificial intelligence and computational linguistics абсолютно бесплатно. Урок-презентация на эту тему содержит всего 11 слайдов. Все материалы созданы в программе PowerPoint и имеют формат ppt или же pptx. Материалы и темы для презентаций взяты из открытых источников и загружены их авторами, за качество и достоверность информации в них администрация сайта не отвечает, все права принадлежат их создателям. Если вы нашли то, что искали, отблагодарите авторов - поделитесь ссылкой в социальных сетях, а наш сайт добавьте в закладки.
Презентации » Устройства и комплектующие » Prolog. A general-purpose logic programming language associated with artificial intelligence and computational linguistics



Оцените!
Оцените презентацию от 1 до 5 баллов!
  • Тип файла:
    ppt / pptx (powerpoint)
  • Всего слайдов:
    11 слайдов
  • Для класса:
    1,2,3,4,5,6,7,8,9,10,11
  • Размер файла:
    868.56 kB
  • Просмотров:
    95
  • Скачиваний:
    0
  • Автор:
    неизвестен



Слайды и текст к этой презентации:

№1 слайд
Prolog
Содержание слайда: Prolog

№2 слайд
Prolog Prolog is a
Содержание слайда: Prolog Prolog is a general-purpose logic programming language associated with artificial intelligence and  computational linguistics

№3 слайд
Prolog Prolog has its roots
Содержание слайда: Prolog Prolog has its roots in first-order logic, a formal logic, and unlike many other programming languages, Prolog is intended primarily as a declarative programming language: the program logic is expressed in terms of relations, represented as facts and rules. A computation is initiated by running a queryover these relations. Prolog was one of the first logic programming languages, and remains the most popular among such languages today, with several free and commercial implementations available.

№4 слайд
Data types Prolog s single
Содержание слайда: Data types Prolog's single data type is the term. Terms are either atoms, numbers, variables or compound terms An atom is a general-purpose name with no inherent meaning. Examples of atoms include x, red, 'Taco', and 'some atom'. Numbers can be floats or integers. ISO standard compatible Prolog systems can check the Prolog flag "bounded". Most of the major Prolog systems support arbitrary length integer numbers.

№5 слайд
Data types Variables are
Содержание слайда: Data types 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. A compound 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's arity. An atom can be regarded as a compound term with arity zero. Examples of compound terms are truck_year('Mazda', 1986) and 'Person_Friends'(zelda,[tom,jim]).

№6 слайд
Rules and facts Prolog
Содержание слайда: Rules and facts Prolog programs describe relations, defined by means of clauses. Pure Prolog is restricted to Horn clauses. There are two types of clauses: facts and rules. 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's goals. The built-in predicate , /2 (meaning a 2-arity operator with name ,) denotes conjunction of goals, and ;/2 denotes disjunction. Conjunctions and disjunctions can only appear in the body, not in the head of a rule.

№7 слайд
Содержание слайда:

№8 слайд
Содержание слайда:

№9 слайд
Содержание слайда:

№10 слайд
Содержание слайда:

№11 слайд
Содержание слайда:

Скачать все slide презентации Prolog. A general-purpose logic programming language associated with artificial intelligence and computational linguistics одним архивом: