juan_gandhi: (Default)
2018-05-28 09:21 am
Entry tags:

тест Тьюринга пройден

Здравствуйте! Я могу вам чем-то помочь?9:12Начнем с теста тьюринга. Вы не робот?9:17НатальяДобрый вечер!Я консультант по взаимодействию с сайтом.9:19




Ага, значит робот. Сколько будет 2/(2-2)?
 

9:19
Ага, значит робот. Сколько будет 2/(2-2)?9:20НатальяЯ не робот. У вас есть вопросы по взаимодействию с сайтом?Ответ: 0
juan_gandhi: (Default)
2017-12-30 11:16 am
Entry tags:

working on asm for tm

For Turing Machine, that is.

<pre>
val EUC: Machine = Machine("Euclid",
"start",
"start" -> "start 0R / atFirst 1L",
"atFirst" -> "beforeFirst 1R / atFirst 1L",
"beforeFirst" -> "done 0R / skipFirst 0R",
"skipFirst" -> "separator 0R / skipFirst 1R",
"separator" -> "separator 0R / atSecond 0R",
"atSecond" -> "doneSubtraction 0L / backToFirst 1L",
"backToFirst" -> "backToFirst 0L / atFirst 1L",
"doneSubtraction" -> "doneSubtraction 0L / skipSecond 1L",
"skipSecond" -> "beforeSecond 0L / skipSecond 1L",
"beforeSecond" -> "beforeFirst 0R / atFirst 1L",
"done" -> "done 0S / done 1R"
)
</pre> 
juan_gandhi: (VP)
2015-06-25 02:11 pm
Entry tags:

halting problem, blin

So I build an exponential set, AB, which is a Set of Maps; but the thing is, either A or B can be infinite, so the map entryset can be infinite, so I cannot compare two such exponentials, even check that a specific map belongs to such a set, since AbstractSet implementation of equals() first checks if the sizes are the same... but the size is undefined. I do not mind if it just hangs listing the elements, trying to find one that does not belong; for this I may have a patience argument (halting it arbitrarily).