solipsist comments on Prisoner's Dilemma (with visible source code) Tournament - Less Wrong
You are viewing a comment permalink. View the original post to see all comments and the full post content.
You are viewing a comment permalink. View the original post to see all comments and the full post content.
Comments (232)
Attention to all competitors who have not yet submitted code: My bot will analyze your bot looking for statements of the following structure (regardless of the names of the individual atoms):
(if <predicate> 'C ...)(cond (<predicate> 'C) ...)(case <predicate> ((...) 'C) ...)If it finds such a statement as the first statement in a top-level returning position (the body of a top-level
let, the returning statement in your lambda, etc), then my bot might cooperate depending upon the nature of your predicate. Otherwise, my bot will defect against you.If we are to achieve mutual cooperation, we must make it as easy as possible for our bots to prove cooperation. Please start your code with a conditional cooperation. The nature of the condition is up to you. You can still try to exploit me in
<predicate>. But the only way to have a shot at mutual cooperation is to provide an obvious top-level cooperating codepath.I'll do as you request, though there are other ways to achieve mutual cooperation (e.g. MimicBot).
Imagine implementing a MimicBot. You need to figure out what my bot will do, and that's non-trivial if you want to avoid infinite loops. You're going to need a fair bit of code. I don't care how the code works, but it should start with
(if <predicate> 'C ...)This pattern alone won't get you mutual cooperation. You'll still need to write a MimicBot, or a FairBot, or a JustBot. But whatever you do, make it obvious that there's a cooperation condition.
I'm not advocating any particular strategy; I'm advocating a pattern: If you want a shot at trust, you'd better have a codepath that results in cooperation, and you'd best make it really easy for other bots to recognize.
Best of luck!
Since I don't think you're going down the predicate route, I'll tell you the sort of strategy I was going to use against it.
The predicate (eq? 1 1) evaluates to true, except when eq? is shadowed. Just curious -- would it have worked?
Nice. But no. My first attempt was a static analyzer, and the first thing it did was a syntax expansion, putting all code into fully expanded form and attaching lexical information to each identifier that let me see what was from the base package and what was redefined.
FWIW, it's pretty easy to pull out the first conditional (cond, case, or if) when you have code in fully expanded form (which turns them all into ifs). However, that just puts you in a position of checking whether a predicate is
#tor#f, which isn't much easier than discovering whether a program returns'Cor'D. Ultimately, your MimicBot idea is better :-)