forked from knome/metabrainfuck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bf.cpp
714 lines (581 loc) · 22.4 KB
/
bf.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
// Wherein we develop a comprehensive mathematical proof of the inexistance of a merciful god //
// or //
// Implementing Brainfuck via C++ Template Metaprogramming //
// BrainFuck Implementation Details
// Memory : RAM Bound, expands in either direction as needed
// Slots : wrapping integers of value 0 to 255
// Geometry : angles do not seem right, as if they don't quite fit.
// : going in further to find the source of the whispering
//
// TYPE BOXED NUMBERS
//
template < unsigned char given >
struct BrainFuckSlot {
typedef BrainFuckSlot< given + 1 > Increment ;
typedef BrainFuckSlot< given - 1 > Decrement ;
const static unsigned char value = given ;
};
template <>
struct BrainFuckSlot< 0 > {
typedef BrainFuckSlot< 1 > Increment ;
typedef BrainFuckSlot< 255 > Decrement ;
const static unsigned char value = 0 ;
};
template <>
struct BrainFuckSlot< 255 > {
typedef BrainFuckSlot< 0 > Increment ;
typedef BrainFuckSlot< 254 > Decrement ;
const static unsigned char value = 255 ;
};
//
// MEMORY
//
struct BrainFuckEOM {};
template < typename Current, typename Next > struct BrainFuckMemoryVector{
typedef Current Head ;
typedef Next Tail ;
};
template < typename Current >
struct BrainFuckMemoryVector< Current, BrainFuckEOM > {
typedef Current Head ;
typedef BrainFuckMemoryVector< BrainFuckSlot< 0 >, BrainFuckEOM > Tail ;
};
template < typename Before, typename Current, typename After >
struct BrainFuckMemory {
typedef BrainFuckMemory< Before, typename Current::Increment, After > Increment ;
typedef BrainFuckMemory< Before, typename Current::Decrement, After > Decrement ;
typedef BrainFuckMemory< typename Before::Tail,
typename Before::Head,
BrainFuckMemoryVector< Current, After > > Left ;
typedef BrainFuckMemory< BrainFuckMemoryVector< Current, Before >,
typename After::Head,
typename After::Tail > Right ;
template < typename Anything >
struct Set {
typedef BrainFuckMemory< Before, BrainFuckSlot< Anything::value >, After > Result ;
};
typedef Current Peek;
};
//
// STATE
//
template < unsigned long long int Ops, typename Memory, typename TheInput, typename TheOutput >
struct BrainFuckState {
typedef BrainFuckState< Ops + 1, Memory, TheInput, TheOutput > Noop ;
typedef BrainFuckState< Ops + 1, typename Memory::Increment, TheInput, TheOutput > Increment ;
typedef BrainFuckState< Ops + 1, typename Memory::Decrement, TheInput, TheOutput > Decrement ;
typedef BrainFuckState< Ops + 1, typename Memory::Left , TheInput, TheOutput > Left ;
typedef BrainFuckState< Ops + 1, typename Memory::Right , TheInput, TheOutput > Right ;
typedef BrainFuckState<
Ops + 1,
typename Memory::template Set< typename TheInput::Head >::Result,
typename TheInput::Tail,
TheOutput
>
Input ;
typedef BrainFuckState<
Ops + 1 ,
Memory ,
TheInput ,
typename TheOutput::template Push< Memory::Peek::value >::Result
>
Output ;
typedef typename Memory::Peek Peek;
typedef TheOutput GetOutput;
template < typename Injectee >
struct InjectState {
typedef typename
Injectee
::template ApplyToState< BrainFuckState< Ops, Memory, TheInput, TheOutput > >
::Result
Result;
};
};
//
// QUEUE
//
template < unsigned char... Chars > struct BrainFuckQueue ;
template < unsigned char Anything, unsigned char... Chars >
struct BrainFuckQueue < Anything, Chars... >{
typedef BrainFuckSlot< Anything > Head ;
typedef BrainFuckQueue< Chars... > Tail ;
template < unsigned char InChar >
struct Push {
typedef BrainFuckQueue< InChar, Anything, Chars... > Result ;
};
};
template <>
struct BrainFuckQueue <> {
typedef BrainFuckSlot< 0 > Head ;
typedef BrainFuckQueue<> Tail ;
template < unsigned char InChar >
struct Push {
typedef BrainFuckQueue< InChar > Result ;
};
};
//
// COMMAND TRAVERSER DECLARATIONS
//
template < typename TheApplicator, unsigned char... Chars > struct BrainFuckTraverser ;
template < unsigned char... Chars > struct Applicator ;
//
// COMMAND INTERPRETER
//
template < unsigned char... Commands > struct BrainFuckProgram ;
template < unsigned char... Commands >
struct BrainFuckProgram < '+', Commands... > {
template < typename State >
struct ApplyToState {
typedef typename
BrainFuckProgram< Commands... >
::template ApplyToState< typename State::Increment >
::Result
Result
;
};
};
template < unsigned char... Commands >
struct BrainFuckProgram < '-', Commands... > {
template < typename State >
struct ApplyToState {
typedef typename
BrainFuckProgram< Commands... >
::template ApplyToState< typename State::Decrement >
::Result
Result
;
};
};
template < unsigned char... Commands >
struct BrainFuckProgram < '<', Commands... > {
template < typename State >
struct ApplyToState {
typedef typename
BrainFuckProgram< Commands... >
::template ApplyToState< typename State::Left >
::Result
Result
;
};
};
template < unsigned char... Commands >
struct BrainFuckProgram < '>', Commands... > {
template < typename State >
struct ApplyToState {
typedef typename
BrainFuckProgram< Commands... >
::template ApplyToState< typename State::Right >
::Result
Result
;
};
};
template < unsigned char... Commands >
struct BrainFuckProgram < '.', Commands... > {
template < typename State >
struct ApplyToState {
typedef typename
BrainFuckProgram< Commands... >
::template ApplyToState< typename State::Output >
::Result
Result
;
};
};
template < unsigned char... Commands >
struct BrainFuckProgram < ',', Commands... > {
template < typename State >
struct ApplyToState {
typedef typename
BrainFuckProgram< Commands... >
::template ApplyToState< typename State::Input >
::Result
Result
;
};
};
struct BrainFuckProgramFactory {
template < unsigned char... Chars >
struct ReceiveChars {
typedef BrainFuckProgram< Chars... > Result ;
};
};
template < unsigned char SlotValue, typename State, unsigned char... Commands >
struct HandleLoop {
typedef typename
BrainFuckTraverser< Applicator<>, Commands... >
::Until
::template InjectChars< BrainFuckProgramFactory >
::Result
::template ApplyToState< State >
::Result
::template InjectState< BrainFuckProgram< '[', Commands... > >
::Result
Result;
;
};
template < typename State, unsigned char... Commands >
struct HandleLoop< 0, State, Commands... > {
typedef typename
BrainFuckTraverser< Applicator<>, Commands... >
::After
::template InjectChars< BrainFuckProgramFactory >
::Result
::template ApplyToState< State >
::Result
Result;
};
template < unsigned char... Commands >
struct BrainFuckProgram < '[', Commands... > {
template < typename State >
struct ApplyToState {
typedef typename
HandleLoop<
State::Peek::value,
State,
Commands...
>
::Result
Result
;
};
};
template < unsigned char Anything, unsigned char... Commands >
struct BrainFuckProgram < Anything, Commands... > {
// an ignored character
template < typename State >
struct ApplyToState {
typedef typename
BrainFuckProgram< Commands... >
::template ApplyToState< typename State::Noop >
::Result
Result
;
};
};
template <>
struct BrainFuckProgram <> {
// end of program
template < typename State >
struct ApplyToState {
typedef typename State::Noop Result ;
};
};
//
// COMMAND TRAVERSER
//
template < unsigned char... Chars > struct Applicator ;
template < unsigned char... Chars >
struct Applicator {
template < typename Target >
struct InjectChars {
typedef typename Target::template ReceiveChars< Chars... >::Result Result;
};
template < unsigned char Char >
struct Append {
typedef Applicator< Chars..., Char > Result;
};
template < unsigned char... AdditionalChars >
struct ReceiveChars {
typedef Applicator< Chars..., AdditionalChars... > Result ;
};
};
template < typename TheApplicator, unsigned char... Chars >
struct BrainFuckTraverser< TheApplicator, ']', Chars... > {
// end of subsection
typedef TheApplicator Until ;
typedef Applicator< Chars... > After ;
};
template < typename TheApplicator, unsigned char... Chars >
struct BrainFuckTraverser< TheApplicator, '[', Chars... > {
// start of subsection
typedef typename
BrainFuckTraverser< Applicator<>, Chars... >
::After
::template InjectChars<
typename
BrainFuckTraverser< Applicator<>, Chars... >
::Until
::template InjectChars< typename TheApplicator::template Append< '[' >::Result > ::Result
::template Append< ']' > ::Result
>
::Result
Until ;
typedef typename
BrainFuckTraverser< Applicator<>, Chars... >::After
After;
};
template < typename TheApplicator, unsigned char Anything, unsigned char... Chars >
struct BrainFuckTraverser< TheApplicator, Anything, Chars... > {
// anything else
typedef typename
BrainFuckTraverser< typename TheApplicator::template Append< Anything >::Result, Chars... >::Until
Until
;
typedef typename
BrainFuckTraverser< Applicator<>, Chars... >::After
After;
};
template < typename TheApplicator >
struct BrainFuckTraverser< TheApplicator > {
// end of program
typedef TheApplicator Until ;
typedef Applicator<> After ;
// if we reach the end w/o finding the ] we just return nothing
// this means our BF programs artificially terminate all dangling
// ['s at the end of the program. A dangling [...] pair is malformed
// input
};
//
// WONDER TWIN POWERS ACTIVATE
//
int main( int argc, char ** argv ){
typedef BrainFuckMemory<
BrainFuckMemoryVector< BrainFuckSlot< 0 >, BrainFuckEOM >,
BrainFuckSlot< 0 >,
BrainFuckMemoryVector< BrainFuckSlot< 0 >, BrainFuckEOM >
>
InitialMemoryState
;
typedef BrainFuckQueue<> InitialOutput ;
// from wikipedia
struct HelloWorld {
typedef BrainFuckProgram<
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '[', '>', '+',
'+', '+', '+', '+', '+', '+', '>', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '>', '+', '+', '+', '>', '+', '<', '<', '<',
'<', '-', ']', '>', '+', '+', '.', '>', '+', '.', '+', '+', '+',
'+', '+', '+', '+', '.', '.', '+', '+', '+', '.', '>', '+', '+',
'.', '<', '<', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '.', '>', '.', '+', '+', '+', '.', '-',
'-', '-', '-', '-', '-', '.', '-', '-', '-', '-', '-', '-', '-',
'-', '.', '>', '+', '.', '>', '.'
>
Program
;
typedef BrainFuckQueue<> Input ;
};
// from http://www.hevanet.com/cristofd/brainfuck/results1.txt
// exceeded template depth on first attempt
// exceeded available memory on all further attempts
struct BrainFuckQuine {
typedef BrainFuckProgram<
'-', '>', '+', '>', '+', '+', '+', '>', '>', '+', '>', '+', '+',
'>', '+', '>', '+', '+', '+', '>', '>', '+', '>', '+', '+', '>',
'>', '>', '+', '>', '+', '>', '+', '>', '+', '+', '>', '+', '>',
'>', '>', '>', '+', '+', '+', '>', '+', '>', '>', '+', '+', '>',
'+', '>', '+', '+', '+', '>', '>', '+', '+', '>', '+', '+', '>',
'>', '+', '>', '>', '+', '>', '+', '+', '>', '+', '+', '>', '+',
'>', '>', '>', '>', '+', '+', '+', '>', '+', '>', '>', '>', '>',
'+', '+', '>', '+', '+', '>', '>', '>', '>', '+', '>', '>', '+',
'+', '>', '+', '>', '+', '+', '+', '>', '>', '>', '+', '+', '>',
'>', '+', '+', '+', '+', '+', '+', '>', '>', '+', '>', '>', '+',
'+', '>', '+', '>', '>', '>', '>', '+', '+', '+', '>', '>', '+',
'+', '+', '+', '+', '>', '>', '+', '>', '+', '+', '+', '>', '>',
'>', '+', '+', '>', '>', '+', '+', '>', '>', '+', '>', '>', '+',
'+', '>', '+', '>', '+', '+', '+', '>', '>', '>', '+', '+', '>',
'>', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '>', '>', '+', '>', '>', '+', '+', '>', '+', '>', '+', '+',
'+', '>', '+', '>', '+', '+', '+', '>', '>', '>', '+', '+', '>',
'>', '+', '+', '+', '+', '>', '>', '+', '>', '>', '+', '+', '>',
'+', '>', '>', '>', '>', '+', '+', '+', '>', '>', '+', '+', '+',
'+', '+', '>', '>', '>', '>', '+', '+', '>', '>', '>', '>', '+',
'>', '+', '>', '+', '+', '>', '>', '+', '+', '+', '>', '+', '>',
'>', '>', '>', '+', '+', '+', '>', '+', '>', '>', '>', '>', '+',
'+', '+', '>', '+', '>', '>', '>', '>', '+', '+', '+', '>', '>',
'+', '+', '>', '+', '+', '>', '+', '>', '+', '+', '+', '>', '+',
'>', '+', '+', '>', '+', '+', '>', '>', '>', '>', '>', '>', '+',
'+', '>', '+', '>', '+', '+', '+', '>', '>', '>', '>', '>', '+',
'+', '+', '>', '>', '>', '+', '+', '>', '+', '>', '+', '+', '+',
'>', '+', '>', '+', '>', '+', '+', '>', '>', '>', '>', '>', '>',
'+', '+', '>', '>', '>', '+', '>', '>', '>', '+', '+', '>', '+',
'>', '>', '>', '>', '+', '+', '+', '>', '+', '>', '>', '>', '+',
'>', '>', '+', '+', '>', '+', '>', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '>',
'>', '>', '>', '+', '>', '+', '>', '>', '>', '+', '>', '>', '+',
'+', '>', '+', '>', '+', '+', '+', '>', '>', '>', '+', '+', '>',
'>', '+', '+', '+', '+', '+', '+', '+', '+', '>', '>', '+', '>',
'>', '+', '+', '>', '+', '>', '>', '>', '>', '+', '+', '+', '>',
'>', '+', '+', '+', '+', '+', '+', '>', '>', '>', '+', '>', '+',
'+', '>', '>', '+', '+', '+', '>', '+', '>', '+', '>', '+', '+',
'>', '+', '>', '+', '+', '+', '>', '>', '>', '>', '>', '+', '+',
'+', '>', '>', '>', '+', '>', '+', '>', '>', '+', '+', '>', '+',
'>', '+', '+', '+', '>', '>', '>', '+', '+', '>', '>', '+', '+',
'+', '+', '+', '+', '+', '+', '>', '>', '+', '>', '>', '+', '+',
'>', '+', '>', '>', '>', '>', '+', '+', '+', '>', '>', '+', '+',
'+', '+', '>', '>', '+', '>', '+', '+', '+', '>', '>', '>', '>',
'>', '>', '+', '+', '>', '+', '>', '+', '+', '+', '>', '>', '+',
'>', '+', '+', '>', '>', '>', '>', '+', '>', '+', '>', '+', '+',
'>', '+', '>', '>', '>', '>', '+', '+', '+', '>', '>', '+', '+',
'+', '>', '>', '>', '+', '[', '[', '-', '>', '>', '+', '<', '<',
']', '<', '+', ']', '+', '+', '+', '+', '+', '[', '-', '>', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '<', ']', '>', '.', '[',
'+', ']', '>', '>', '[', '<', '<', '+', '+', '+', '+', '+', '+',
'+', '[', '-', '>', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'<', ']', '>', '-', '.', '-', '-', '-', '-', '-', '-', '-', '-',
'-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '>', '-',
'[', '-', '<', '.', '<', '+', '>', '>', ']', '<', '[', '+', ']',
'<', '+', '>', '>', '>', ']', '<', '<', '<', '[', '-', '[', '-',
'[', '-', '[', '>', '>', '+', '<', '+', '+', '+', '+', '+', '+',
'[', '-', '>', '+', '+', '+', '+', '+', '<', ']', ']', '>', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'<', ']', '>', '+', '+', '+', '<', ']', '+', '+', '+', '+', '+',
'+', '[', '-', '>', '+', '+', '+', '+', '+', '+', '+', '<', ']',
'>', '+', '<', '<', '<', '-', '[', '-', '>', '>', '>', '+', '+',
'<', '<', '<', ']', '>', '[', '-', '>', '>', '.', '<', '<', ']',
'<', '<', ']'
>
Program;
typedef BrainFuckQueue<> Input ;
};
// Exceeds template depth as expected
struct InfiniteLoop {
typedef BrainFuckProgram<
'+', '[', ']'
>
Program
;
typedef BrainFuckQueue<> Input ;
};
// http://codegolf.com/competition/run/8/1
// hello world
struct CodeGolf_01 {
typedef BrainFuckProgram<
'>', '+', '+', '+', '+', '+', '+', '+', '+', '+', '[', '<', '+',
'+', '+', '+', '+', '+', '+', '+', '>', '-', ']', '<', '.', '>',
'+', '+', '+', '+', '+', '+', '+', '[', '<', '+', '+', '+', '+',
'>', '-', ']', '<', '+', '.', '+', '+', '+', '+', '+', '+', '+',
'.', '.', '+', '+', '+', '.', '[', '-', ']', '>', '+', '+', '+',
'+', '+', '+', '+', '+', '[', '<', '+', '+', '+', '+', '>', '-',
']', '<', '.', '>', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '[', '<', '+', '+', '+', '+', '+', '+', '+', '+', '>',
'-', ']', '<', '-', '.', '-', '-', '-', '-', '-', '-', '-', '-',
'.', '+', '+', '+', '.', '-', '-', '-', '-', '-', '-', '.', '-',
'-', '-', '-', '-', '-', '-', '-', '.', '[', '-', ']', '>', '+',
'+', '+', '+', '+', '+', '+', '+', '[', '<', '+', '+', '+', '+',
'>', '-', ']', '<', '+', '.', '[', '-', ']', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '.'
>
Program;
typedef BrainFuckQueue<> Input ;
};
// http://codegolf.com/competition/run/8/2
// just another brainfuck hacker
// lol: (g++) : error: template instantiation depth exceeds maximum of 16384
// lol: (clang) : bf.cpp:194:41: fatal error: recursive template instantiation exceeded maximum depth of 32768
// : setting instantiation to 65536 exhausts memory
struct CodeGolf_02 {
typedef BrainFuckProgram<
'+', '+', '+', '[', '>', '+', '+', '+', '+', '+', '<', '-', ']',
'>', '[', '>', '+', '>', '+', '+', '+', '>', '+', '>', '+', '+',
'>', '+', '+', '+', '+', '+', '>', '+', '+', '<', '[', '+', '+',
'<', ']', '>', '-', '-', '-', ']', '>', '-', '>', '-', '.', '[',
'>', '+', '+', '>', '+', '<', '<', '-', '-', ']', '>', '-', '-',
'.', '-', '-', '.', '+', '.', '>', '>', '>', '+', '+', '.', '<',
'<', '.', '<', '-', '-', '-', '-', '-', '-', '.', '+', '.', '+',
'+', '+', '+', '+', '.', '>', '>', '-', '.', '<', '+', '+', '+',
'+', '.', '<', '-', '-', '.', '>', '>', '>', '.', '<', '<', '-',
'-', '-', '.', '<', '.', '-', '-', '>', '-', '.', '>', '+', '.',
'[', '+', '+', '+', '+', '+', '.', '-', '-', '-', '<', ']', '>',
'>', '[', '.', '-', '-', '-', '>', ']', '<', '<', '.', '<', '+',
'.', '+', '+', '.', '+', '+', '>', '+', '+', '+', '[', '.', '<',
']', '[', '.', ']', '<', '+', '+', '.'
>
Program;
typedef BrainFuckQueue<> Input ;
};
// oops : forgot to note where I got this
// also hits memory exhaustion
struct Fibonacci {
typedef BrainFuckProgram<
// number of numbers to generate
// '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
// exhausts even for a single number, lol
'+',
// generator
'>', '+', '>', '>', '>', '>', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '>', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '<', '<', '<', '<', '<', '<', '[', '>',
'[', '>', '>', '>', '>', '>', '>', '+', '>', '+', '<', '<', '<',
'<', '<', '<', '<', '-', ']', '>', '>', '>', '>', '>', '>', '>',
'[', '<', '<', '<', '<', '<', '<', '<', '+', '>', '>', '>', '>',
'>', '>', '>', '-', ']', '<', '[', '>', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '[', '-', '<', '-', '[', '>', '>', '+',
'>', '+', '<', '<', '<', '-', ']', '>', '>', '>', '[', '<', '<',
'<', '+', '>', '>', '>', '-', ']', '+', '<', '[', '>', '[', '-',
']', '<', '[', '-', ']', ']', '>', '[', '<', '<', '[', '>', '>',
'>', '+', '<', '<', '<', '-', ']', '>', '>', '[', '-', ']', ']',
'<', '<', ']', '>', '>', '>', '[', '>', '>', '+', '>', '+', '<',
'<', '<', '-', ']', '>', '>', '>', '[', '<', '<', '<', '+', '>',
'>', '>', '-', ']', '+', '<', '[', '>', '[', '-', ']', '<', '[',
'-', ']', ']', '>', '[', '<', '<', '+', '>', '>', '[', '-', ']',
']', '<', '<', '<', '<', '<', '<', '<', ']', '>', '>', '>', '>',
'>', '[', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '.', '[',
'-', ']', ']', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'<', '[', '-', '>', '-', '<', ']', '>', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
'+', '+', '+', '+', '.', '[', '-', ']', '<', '<', '<', '<', '<',
'<', '<', '<', '<', '<', '<', '<', '[', '>', '>', '>', '+', '>',
'+', '<', '<', '<', '<', '-', ']', '>', '>', '>', '>', '[', '<',
'<', '<', '<', '+', '>', '>', '>', '>', '-', ']', '<', '-', '[',
'>', '>', '.', '>', '.', '<', '<', '<', '[', '-', ']', ']', '<',
'<', '[', '>', '>', '+', '>', '+', '<', '<', '<', '-', ']', '>',
'>', '>', '[', '<', '<', '<', '+', '>', '>', '>', '-', ']', '<',
'<', '[', '<', '+', '>', '-', ']', '>', '[', '<', '+', '>', '-',
']', '<', '<', '<', '-', ']'
>
Program;
typedef BrainFuckQueue<> Input ;
};
// (g++) 57230ull steps to complete for input of 150
// input of 200 exhausted memory
//
// (clang) 101305 steps to complete for input 200
// input of 255 exhausted memory
struct Test {
typedef BrainFuckProgram<
',',
'[',
'[',
'>', '+', '<', '-',
']',
'>', '-',
']'
>
Program;
typedef BrainFuckQueue< 255 > Input ;
};
/////
////
/// change running program here
//
typedef Test SelectedProgram ;
//
///
////
/////
typedef
BrainFuckState< 0, InitialMemoryState, typename SelectedProgram::Input, InitialOutput >
InitialState
;
typedef typename
SelectedProgram
::Program
::ApplyToState< InitialState >
::Result
Final
;
// this causes a template error which prints out the final state of the 'program'
// Final::GetOutput::Wat ;
Final::Wat ;
return 0;
}