翻訳と辞書
Words near each other
・ Pop'n music 8
・ Pop'n music 9
・ Pop'n Music Mickey Tunes
・ Pop'n Pop
・ Pop'n TwinBee
・ Pop'n'gum
・ Pop's Props
・ Pop's Props Cloudster
・ Pop's Props Pinocchio
・ Pop's Props Zing
・ Pop's Ultimate Star
・ Pop*Porn
・ Pop, Dick and Harry
・ Pop, Lock & Drop It
・ Pop, Songs & Death
POP-11
・ POP-2
・ Pop-a-Lock
・ Pop-Boy Smith
・ Pop-culture tourism
・ Pop-Eyes
・ Pop-folk
・ Pop-It
・ Pop-musiikkia
・ Pop-O-Pies
・ Pop-pop
・ Pop-rap
・ Pop-Tarts
・ Pop-Tops
・ Pop-up ad


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

POP-11 : ウィキペディア英語版
POP-11
POP-11 is a reflective, incrementally compiled programming language with many of the features of an interpreted language. It is the core language of the Poplog programming environment developed originally by the University of Sussex, and recently in the
(School of Computer Science ) at the
University of Birmingham which hosts
(the Poplog website ).
POP-11 is an evolution of the language POP-2, developed in Edinburgh University and features an open stack model (like Forth, among others). It is mainly procedural, but supports declarative language constructs, including a (pattern matcher ) and is mostly used for research and teaching in Artificial Intelligence, although it has features sufficient for many other classes of problems. It is often used to introduce symbolic programming techniques to programmers of more conventional languages like Pascal, who find POP syntax more familiar than that of Lisp. One of POP-11's features is that it supports first-class functions.
Pop-11 is the core language of the Poplog system. The fact that the compiler and compiler subroutines are available at run-time (a requirement for incremental compilation) gives it the ability to support a far wider range of extensions than would be possible using only a macro facility. This made it possible for incremental compilers to be added for Prolog, Common Lisp and Standard ML, which could be added as required to support either mixed language development or development in the second language without using any Pop-11 constructs. This made it possible for Poplog to be used by teachers, researchers, or developers who were interested in only one of the languages. The most successful product developed in Pop-11 was the Clementine data-mining system, developed by ISL, as described in the entry on Poplog. After SPSS bought ISL they decided to port Clementine to C++ and Java, and eventually succeeded with great effort (and perhaps some loss of the flexibility provided by the use of an AI language!).
As explained in the entries for Poplog and POP-2, Pop-11 was for a time available only as part of an expensive commercial package (Poplog), but since about 1999 it has been freely available as part of (the Open Source version of Poplog ), including various additional packages and teaching libraries. An online version of ELIZA using Pop-11 is (available ) at Birmingham.
At the University of Sussex David Young used Pop-11 in combination with C and Fortran to develop a suite of teaching and interactive development tools for image processing and vision, and has made them available in the (Popvision ) extension to Poplog.
==Simple code examples==
Here is an example of a simple POP-11 program:
define Double(Source) -> Result;
Source
*2 -> Result;
enddefine;
Double(123) =>
That prints out:

*
* 246
This one includes some list processing:


define RemoveElementsMatching(Element, Source) -> Result;
lvars Index;
%
for Index in Source do
unless Index = Element or Index matches Element then
Index;
endunless;
endfor;
%
-> Result;
enddefine;
RemoveElementsMatching("the", the cat sat on the mat) => ;;; outputs cat sat on mat
RemoveElementsMatching("the", (on ) the mat]) => ;;; outputs on ) mat]
RemoveElementsMatching(= cat" TITLE="the cat] (on ) mat]
RemoveElementsMatching(= cat">the cat] (on ) mat]
RemoveElementsMatching(= cat, the cat is a big cat) => ;;; outputs (a )]


Examples using the Pop-11 pattern matcher, which makes it relatively easy for students to learn to develop sophisticated list-processing programs without having to treat patterns as tree structures accessed by 'head' and 'tail' functions (CAR and CDR in Lisp), can be found in the (online introductory tutorial ). The matcher is at the heart of
(the SimAgent (sim_agent) toolkit ). Some of the powerful features of the toolkit, e.g. linking pattern variables to inline code variables, would have been very difficult to implement without the incremental compiler facilities.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「POP-11」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.