thesis version

This commit is contained in:
2021-05-10 18:11:23 +02:00
commit 8d0b353391
152 changed files with 28007 additions and 0 deletions

14
scripts/red_expr Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
cat|sed -r \
-e 's/.*Ts = \{[A-Za-z0-9_]+<(.*)>\};.*/\1/g' \
-e 's/Expression/E/g' \
-e 's/op::Comma/#/g' \
-e 's/op::Assign/=/g' \
-e 's/op::Addition/+/g' \
-e 's/op::Multiplication/*/g' \
-e 's/IntToType<(.)ul>/\1/g' \
-e 's/IteratorImpl<>/IT/g' \
-e 's/IteratorImpl<(.) >/\1/g' \
-e 's/int\*, //g' \
-e 's/, IteratorImpl<> //g'