This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BDD a = ...; | |
| BDD b = ...; | |
| BDD gate_x(BDD op, size_t tgt) | |
| { | |
| auto x_op = [](BDD lhs, BDD rhs) { | |
| return BDD(tgt, rhs, lhs); | |
| }; | |
| BDD result = bdd_operation(op, tgt, x_op); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@@@@@ CNFA starts consuming! | |
| Configurations: 1 | |
| Configurations: 1 | |
| Configurations: 1 | |
| Configurations: 1 | |
| Configurations: 1 | |
| Configurations: 1 | |
| Configurations: 1 | |
| Configurations: 1 | |
| Configurations: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for i in DIRECTORY/* ; do cat $i | sed 's/.$//' > tmp_file ; mv tmp_file $i ; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ITERATIONS=XXXXXXX | |
| for i in `seq 1 ${ITERATIONS}` ; do | |
| cat file1 | |
| done >> file2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Unhandled Exception: | |
| System.Exception: While processing \\A ( $pattern ) \\z ---> Microsoft.Automata.AutomataException: SetIsEmpty | |
| at Microsoft.Automata.BDD.GetMin () [0x0001c] in <ed37cda930154c81bcbcc9b765463995>:0 | |
| at Microsoft.Automata.SymbolicRegexNode`1+<>c__DisplayClass109_0[S].<GetFixedPrefix>b__3 (Microsoft.Automata.BDD x) [0x00000] in <ed37cda930154c81bcbcc9b765463995>:0 | |
| at Microsoft.Automata.SymbolicRegexNode`1+<>c__DisplayClass109_1[S].<GetFixedPrefix>b__4 (Microsoft.Automata.BDD x) [0x00000] in <ed37cda930154c81bcbcc9b765463995>:0 | |
| at System.Array.ConvertAll[TInput,TOutput] (TInput[] array, System.Converter`2[TInput,TOutput] converter) [0x00032] in <d0e12f672b88444ab4b6d9b2ecf20142>:0 | |
| at Microsoft.Automata.SymbolicRegexNode`1[S].GetFixedPrefix (Microsoft.Automata.CharSetSolver css) [0x000b2] in <ed37cda930154c81bcbcc9b765463995>:0 | |
| at Microsoft.Automata.SymbolicRegex`1[S]..ctor (Microsoft.Automata.SymbolicRegexNode`1[S] sr, Microsoft.Automata.CharSetSolver css, Microsoft.Automata.BDD[] m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Credits: | |
| # | |
| # - http://fabiorehm.com/blog/2014/09/11/running-gui-apps-with-docker/ | |
| # - https://github.com/jfrazelle/dockerfiles/blob/master/spotify/Dockerfile | |
| # | |
| # Prepare (example): | |
| # | |
| # $ mkdir AnkiDocker | |
| # $ cd AnkiDocker | |
| # $ # Save this file to Dockerfile and adapt it to your needs. |