Tagged Questions
16
votes
7answers
730 views
Optimisation for a brainfuck interpreter
As an exercise to help me learn about interpreters and optimisation, neither of which I know anything about, I have written a brainfuck interpreter in C. It appears to work flawlessly thus far, though ...
11
votes
8answers
3k views
Detecting infinite loop in brainfuck program
I have written a simple brainfuck interpreter in MATLAB script language. It is fed random bf programs to execute (as part of a genetic algorithm project). The problem I face is, the program turns out ...
8
votes
5answers
682 views
what does the '~' mean in python?
what does the '~' mean in python?
i found this BF interpreter in python a while ago.
import sys
#c,i,r,p=0,0,[0]*255,raw_input()
c=0
i=0
p=raw_input()
r=[0]*255
while c<len(p):
...
5
votes
3answers
161 views
Brainfuck compiler in scala
Want to make some Domain Specific Language(DSL) for practice, first idea it is to write interpreter or compiler of Brainfuck.
First idea was to override functions such as they will behave as ...
5
votes
6answers
405 views
How would one go about testing an interpreter or a compiler?
I've been experimenting with creating an interpreter for Brainfuck, and while quite simple to make and get up and running, part of me wants to be able to run tests against it. I can't seem to fathom ...
4
votes
3answers
478 views
Fastest brainfuck interpreter?
Simple question: What is the fastest brainfuck interpreter available?
I am asking this because I am about to write my own optimizing bf interpreter and I need something to compare it with.
4
votes
6answers
340 views
Implementing Brainf*ck loops in an interpreter
I want to build a Brainf*ck (Damn that name) interpreter in my freshly created programming language to prove it's turing-completeness.
Now, everything is clear so far (<>+-,.) - except one thing: ...
2
votes
0answers
440 views
Wrote a quick and dirty Brainfuck - interpreter… what could I do better? [closed]
So, here is my attempt to write a quick and dirty Brainfuck - interpreter:
/// <summary>
/// This the brainfuck interpreter
/// </summary>
internal sealed class BrainfuckInterpreter
{
...