内容简介:As with myprevious post, this post is another excerpt that will be included in my final Master’s thesis, but I decided it is interesting enough to post it on its own.We start with a definition ofDefinition 1: For an expression
As with myprevious post, this post is another excerpt that will be included in my final Master’s thesis, but I decided it is interesting enough to post it on its own.
We start with a definition of diagonalization (or quotation), as discussed in The Gödelian Puzzle Book :
Definition 1: For an expression in which a variable occurs, we say that its diagonalization
is the substitution of the variable with the quoted expression
.
This definition allows us to represent self-referential expressions.
For example, let . Then, the diagonalization of it will be
. In Lisp code:
> (define p (lambda (x) (list 'Boro 'is 'reading x))) > (p 'a-book) '(Boro is reading a-book) > (define d (lambda (p x) (p (list 'quote (p x))))) > (d p 'a-book) '(Boro is reading '(Boro is reading a-book))
As another example, let stand for “Boro is reading the diagonalization of x”, and let
stand for `Boro is reading the diagonalization of “Boro is reading the diagonalization of x”`. That is,
. But, the diagonalization of
is simply
, i.e.
. So,
refers to itself. In Lisp:
> (define q (lambda (x) (list 'Boro 'is 'reading (d identity x)))) > (define r (lambda (x) (d q x))) > (equal? (d q 'test) (r 'test)) #t
Based on these definitions, we will now show how to derive a Quine , which is a program that when evaluated returns its source code as an output – a metaprogram.
Note how we used (d identity x) earlier, i.e. the diagonalization of x. This simply evaluates to (list 'quote x) .
Now, let’s consider the expression (list x (list 'quote x)) which will return a list with two members: x and its diagonalization:
> (define quine-1 (lambda (x) (list x (list 'quote x))))
What if we apply it to itself?
> (quine-1 quine-1) '(#<procedure:quine-1> '#<procedure:quine-1>)
Nothing useful. How about applying its quoted version?
> (quine-1 'quine-1) '(quine-1 'quine-1)
This is exactly why we picked the expression that contains a list of x and its diagonalization. We wanted the evaluation of that expression to return the same expression.
It looks like we are on the right track. Finally, the Quine code that will reproduce itself is just taking the lambda and applying it to its quoted version:
((lambda (x) (list x (list 'quote x))) '(lambda (x) (list x (list 'quote x))))
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
运营之光 2.0
黄有璨 / 电子工业出版社 / 2017-4 / 99
在互联网行业内,“运营”这个职能发展到一定阶段后,往往更需要有成熟的知识体系和工作方法来给予行业从业者以指引。 《运营之光:我的互联网运营方法论与自白 2.0》尤其难得之处在于:它既对“什么是运营”这样的概念认知类问题进行了解读,又带有大量实际的工作技巧、工作思维和工作方法,还包含了很多对于运营的思考、宏观分析和建议,可谓内容完整而全面,同时书中加入了作者亲历的大量真实案例,让全书读起来深入......一起来看看 《运营之光 2.0》 这本书的介绍吧!