├── .gitignore ├── AUTHORS.txt ├── LICENSE-3RD-PARTY.txt ├── LICENSE.txt ├── README.md ├── docs ├── README.html ├── README.json ├── README.md ├── assets │ ├── IOI-2017.svg │ ├── SourceSansPro │ │ ├── LICENSE.txt │ │ ├── SourceSansPro.css │ │ ├── eot │ │ │ ├── SourceSansPro-Light.eot │ │ │ ├── SourceSansPro-Regular.eot │ │ │ └── SourceSansPro-Semibold.eot │ │ ├── ttf │ │ │ ├── SourceSansPro-Light.ttf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ └── SourceSansPro-Semibold.ttf │ │ └── woff2 │ │ │ ├── SourceSansPro-Light.ttf.woff2 │ │ │ ├── SourceSansPro-Regular.ttf.woff2 │ │ │ └── SourceSansPro-Semibold.ttf.woff2 │ ├── katex-fonts │ │ ├── KaTeX_AMS-Regular.eot │ │ ├── KaTeX_AMS-Regular.ttf │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.eot │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.eot │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.eot │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.eot │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.eot │ │ ├── KaTeX_Main-Bold.ttf │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-Italic.eot │ │ ├── KaTeX_Main-Italic.ttf │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.eot │ │ ├── KaTeX_Main-Regular.ttf │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.eot │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.eot │ │ ├── KaTeX_Math-Italic.ttf │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_Math-Regular.eot │ │ ├── KaTeX_Math-Regular.ttf │ │ ├── KaTeX_Math-Regular.woff │ │ ├── KaTeX_Math-Regular.woff2 │ │ ├── KaTeX_SansSerif-Bold.eot │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.eot │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.eot │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.eot │ │ ├── KaTeX_Script-Regular.ttf │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.eot │ │ ├── KaTeX_Size1-Regular.ttf │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.eot │ │ ├── KaTeX_Size2-Regular.ttf │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.eot │ │ ├── KaTeX_Size3-Regular.ttf │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.eot │ │ ├── KaTeX_Size4-Regular.ttf │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.eot │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ ├── KaTeX_Typewriter-Regular.woff │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── libs.js │ ├── style.css │ └── w3.js ├── task_templates.html ├── task_templates.json ├── task_templates.md ├── technical.html ├── technical.json └── technical.md ├── extra-assets ├── Makefile.sample ├── problem.gitignore └── testlib │ ├── testing │ ├── 01.in │ ├── 01.out │ ├── Makefile │ ├── checker.cpp │ ├── cor.out │ ├── dif.out │ ├── emp.out │ ├── ext.out │ ├── ext2.out │ ├── ginv.out │ ├── gmis.out │ ├── gpve.out │ ├── gpvr.out │ ├── gsv.out │ ├── gwe.out │ ├── gwr.out │ ├── mis.out │ ├── onosec.out │ └── test-all.sh │ ├── testlib-cms.h │ └── testlib-master-0.9.21.h ├── install-tps.bat ├── install-tps.sh ├── online-installer └── install.sh ├── samples ├── Batch │ ├── cup │ │ ├── .gitignore │ │ ├── .scripts_version │ │ ├── LICENSE │ │ ├── checker │ │ │ ├── Makefile │ │ │ ├── checker.cpp │ │ │ └── testlib.h │ │ ├── gen │ │ │ ├── Makefile │ │ │ ├── data │ │ │ ├── gencode.cpp │ │ │ ├── manual │ │ │ │ └── manual-1.in │ │ │ └── testlib.h │ │ ├── grader │ │ │ ├── cpp │ │ │ │ ├── cup.h │ │ │ │ └── grader.cpp │ │ │ ├── java │ │ │ │ └── grader.java │ │ │ └── pas │ │ │ │ ├── grader.pas │ │ │ │ └── graderlib.pas │ │ ├── problem.json │ │ ├── public │ │ │ ├── cpp │ │ │ │ ├── compile_cpp.sh │ │ │ │ ├── cup.cpp │ │ │ │ ├── cup.h │ │ │ │ └── grader.cpp │ │ │ ├── examples │ │ │ │ └── 01.in │ │ │ ├── java │ │ │ │ ├── compile_java.sh │ │ │ │ ├── cup.java │ │ │ │ ├── grader.java │ │ │ │ └── run_java.sh │ │ │ └── pas │ │ │ │ ├── compile_pas.sh │ │ │ │ ├── cup.pas │ │ │ │ ├── grader.pas │ │ │ │ └── graderlib.pas │ │ ├── scripts │ │ │ ├── analyze.sh │ │ │ ├── bash_completion │ │ │ │ ├── compile.options │ │ │ │ ├── gen.options │ │ │ │ └── invoke.options │ │ │ ├── compile.sh │ │ │ ├── gen.sh │ │ │ ├── internal │ │ │ │ ├── __init__.py │ │ │ │ ├── gen.py │ │ │ │ ├── gen_data_parser.py │ │ │ │ ├── gen_test.sh │ │ │ │ ├── get_model_solution.py │ │ │ │ ├── get_test_validators.py │ │ │ │ ├── invoke.py │ │ │ │ ├── invoke_test.sh │ │ │ │ ├── json_extract.py │ │ │ │ ├── locations.sh │ │ │ │ ├── pgg.py │ │ │ │ ├── problem_data.sh │ │ │ │ ├── problem_util.sh │ │ │ │ ├── timer.py │ │ │ │ ├── tps_init.sh │ │ │ │ ├── util.py │ │ │ │ └── util.sh │ │ │ ├── invoke.sh │ │ │ ├── make-public.sh │ │ │ ├── run.sh │ │ │ ├── templates │ │ │ │ ├── __init__.py │ │ │ │ ├── exec.cpp.sh │ │ │ │ ├── exec.java.sh │ │ │ │ ├── exec.pas.sh │ │ │ │ ├── public.files │ │ │ │ ├── run.judge.sh │ │ │ │ ├── run.public.sh │ │ │ │ ├── test_name.py │ │ │ │ └── tps_variables.sh │ │ │ └── verify.py │ │ ├── solution │ │ │ ├── 2log.cpp │ │ │ ├── 3log.cpp │ │ │ ├── Q1000.cpp │ │ │ ├── Q1001.cpp │ │ │ ├── Q103.cpp │ │ │ ├── Q104.cpp │ │ │ ├── Q105.cpp │ │ │ ├── Q32.cpp │ │ │ ├── Q33.cpp │ │ │ ├── Q34.cpp │ │ │ ├── Q36.cpp │ │ │ ├── Q38.cpp │ │ │ ├── Q39.cpp │ │ │ ├── Q40.cpp │ │ │ ├── Q69.cpp │ │ │ ├── Q70.cpp │ │ │ ├── Q71.cpp │ │ │ ├── Q999.cpp │ │ │ ├── cup.java │ │ │ ├── cup.pas │ │ │ ├── cup1.cpp │ │ │ ├── log.cpp │ │ │ ├── newlog.cpp │ │ │ └── newnewlog.cpp │ │ ├── solutions.json │ │ ├── statement │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ ├── index.json │ │ │ └── index.md │ │ ├── subtasks.json │ │ └── validator │ │ │ ├── Makefile │ │ │ ├── testlib.h │ │ │ └── validator.cpp │ ├── mountains │ │ ├── .gitignore │ │ ├── .scripts_version │ │ ├── LICENSE │ │ ├── checker │ │ │ ├── Makefile │ │ │ ├── checker.cpp │ │ │ └── testlib.h │ │ ├── gen │ │ │ ├── Makefile │ │ │ ├── data │ │ │ ├── gencode.cpp │ │ │ ├── manual │ │ │ │ ├── sample-1.in │ │ │ │ └── sample-2.in │ │ │ └── testlib.h │ │ ├── grader │ │ │ ├── cpp │ │ │ │ ├── grader.cpp │ │ │ │ └── mountains.h │ │ │ ├── java │ │ │ │ └── grader.java │ │ │ └── pas │ │ │ │ └── grader.pas │ │ ├── problem.json │ │ ├── public │ │ │ ├── cpp │ │ │ │ ├── compile_cpp.sh │ │ │ │ ├── grader.cpp │ │ │ │ ├── mountains.cpp │ │ │ │ └── mountains.h │ │ │ ├── examples │ │ │ │ ├── 01.in │ │ │ │ ├── 01.out │ │ │ │ ├── 02.in │ │ │ │ └── 02.out │ │ │ ├── java │ │ │ │ ├── compile_java.sh │ │ │ │ ├── grader.java │ │ │ │ ├── mountains.java │ │ │ │ └── run_java.sh │ │ │ └── pas │ │ │ │ ├── compile_pas.sh │ │ │ │ ├── grader.pas │ │ │ │ └── mountains.pas │ │ ├── scripts │ │ │ ├── analyze.sh │ │ │ ├── bash_completion │ │ │ │ ├── compile.options │ │ │ │ ├── gen.options │ │ │ │ └── invoke.options │ │ │ ├── compile.sh │ │ │ ├── gen.sh │ │ │ ├── internal │ │ │ │ ├── __init__.py │ │ │ │ ├── gen.py │ │ │ │ ├── gen_data_parser.py │ │ │ │ ├── gen_test.sh │ │ │ │ ├── get_model_solution.py │ │ │ │ ├── get_test_validators.py │ │ │ │ ├── invoke.py │ │ │ │ ├── invoke_test.sh │ │ │ │ ├── json_extract.py │ │ │ │ ├── locations.sh │ │ │ │ ├── pgg.py │ │ │ │ ├── problem_data.sh │ │ │ │ ├── problem_util.sh │ │ │ │ ├── timer.py │ │ │ │ ├── tps_init.sh │ │ │ │ ├── util.py │ │ │ │ └── util.sh │ │ │ ├── invoke.sh │ │ │ ├── make-public.sh │ │ │ ├── run.sh │ │ │ ├── templates │ │ │ │ ├── __init__.py │ │ │ │ ├── exec.cpp.sh │ │ │ │ ├── exec.java.sh │ │ │ │ ├── exec.pas.sh │ │ │ │ ├── public.files │ │ │ │ ├── run.judge.sh │ │ │ │ ├── run.public.sh │ │ │ │ ├── test_name.py │ │ │ │ └── tps_variables.sh │ │ │ └── verify.py │ │ ├── solution │ │ │ ├── bt-optimized-id.cpp │ │ │ ├── bt-optimized.cpp │ │ │ ├── div0.cpp │ │ │ ├── greedy.cpp │ │ │ ├── inputSV.cpp │ │ │ ├── mountain.cpp │ │ │ ├── mountains-haghani-bug.cpp │ │ │ ├── mountains-haghani-solution.cpp │ │ │ ├── mountains-haghani-solution.java │ │ │ ├── mountains.pas │ │ │ ├── n3.cpp │ │ │ ├── naive.cpp │ │ │ ├── sub1_solution.java │ │ │ └── wrong1.cpp │ │ ├── solutions.json │ │ ├── statement │ │ │ ├── Mountains.png │ │ │ ├── Mountains.svg │ │ │ ├── assets │ │ │ │ ├── IOI-2017.svg │ │ │ │ ├── SourceSansPro │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── SourceSansPro.css │ │ │ │ │ ├── eot │ │ │ │ │ │ ├── SourceSansPro-Light.eot │ │ │ │ │ │ ├── SourceSansPro-Regular.eot │ │ │ │ │ │ └── SourceSansPro-Semibold.eot │ │ │ │ │ ├── ttf │ │ │ │ │ │ ├── SourceSansPro-Light.ttf │ │ │ │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ │ │ │ └── SourceSansPro-Semibold.ttf │ │ │ │ │ └── woff2 │ │ │ │ │ │ ├── SourceSansPro-Light.ttf.woff2 │ │ │ │ │ │ ├── SourceSansPro-Regular.ttf.woff2 │ │ │ │ │ │ └── SourceSansPro-Semibold.ttf.woff2 │ │ │ │ ├── katex-fonts │ │ │ │ │ ├── KaTeX_AMS-Regular.eot │ │ │ │ │ ├── KaTeX_AMS-Regular.ttf │ │ │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ │ │ ├── KaTeX_Caligraphic-Bold.eot │ │ │ │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ │ │ ├── KaTeX_Caligraphic-Regular.eot │ │ │ │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ │ │ ├── KaTeX_Fraktur-Bold.eot │ │ │ │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ │ │ ├── KaTeX_Fraktur-Regular.eot │ │ │ │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ │ │ ├── KaTeX_Main-Bold.eot │ │ │ │ │ ├── KaTeX_Main-Bold.ttf │ │ │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ │ │ ├── KaTeX_Main-Italic.eot │ │ │ │ │ ├── KaTeX_Main-Italic.ttf │ │ │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ │ │ ├── KaTeX_Main-Regular.eot │ │ │ │ │ ├── KaTeX_Main-Regular.ttf │ │ │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ │ │ ├── KaTeX_Math-BoldItalic.eot │ │ │ │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ │ │ ├── KaTeX_Math-Italic.eot │ │ │ │ │ ├── KaTeX_Math-Italic.ttf │ │ │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ │ │ ├── KaTeX_Math-Regular.eot │ │ │ │ │ ├── KaTeX_Math-Regular.ttf │ │ │ │ │ ├── KaTeX_Math-Regular.woff │ │ │ │ │ ├── KaTeX_Math-Regular.woff2 │ │ │ │ │ ├── KaTeX_SansSerif-Bold.eot │ │ │ │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ │ │ ├── KaTeX_SansSerif-Italic.eot │ │ │ │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ │ │ ├── KaTeX_SansSerif-Regular.eot │ │ │ │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ │ │ ├── KaTeX_Script-Regular.eot │ │ │ │ │ ├── KaTeX_Script-Regular.ttf │ │ │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ │ │ ├── KaTeX_Size1-Regular.eot │ │ │ │ │ ├── KaTeX_Size1-Regular.ttf │ │ │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ │ │ ├── KaTeX_Size2-Regular.eot │ │ │ │ │ ├── KaTeX_Size2-Regular.ttf │ │ │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ │ │ ├── KaTeX_Size3-Regular.eot │ │ │ │ │ ├── KaTeX_Size3-Regular.ttf │ │ │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ │ │ ├── KaTeX_Size4-Regular.eot │ │ │ │ │ ├── KaTeX_Size4-Regular.ttf │ │ │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ │ │ ├── KaTeX_Typewriter-Regular.eot │ │ │ │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ │ │ └── KaTeX_Typewriter-Regular.woff2 │ │ │ │ ├── libs.js │ │ │ │ ├── style.css │ │ │ │ └── w3.js │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ ├── index.json │ │ │ └── index.md │ │ ├── subtasks.json │ │ └── validator │ │ │ ├── Makefile │ │ │ ├── testlib.h │ │ │ ├── validator-2n.cpp │ │ │ ├── validator-bt.cpp │ │ │ ├── validator-n3.cpp │ │ │ └── validator.cpp │ ├── simurgh │ │ ├── .gitignore │ │ ├── .scripts_version │ │ ├── LICENSE │ │ ├── checker │ │ │ ├── Makefile │ │ │ ├── checker.cpp │ │ │ └── testlib.h │ │ ├── editorial │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ ├── index.json │ │ │ ├── index.md │ │ │ └── simurgh.png │ │ ├── gen │ │ │ ├── Makefile │ │ │ ├── clique.cpp │ │ │ ├── clique_cycle.cpp │ │ │ ├── data │ │ │ ├── gencode.cpp │ │ │ ├── manual │ │ │ │ └── 01.in │ │ │ ├── testlib.h │ │ │ └── two-clique.cpp │ │ ├── grader │ │ │ ├── cpp │ │ │ │ ├── grader.cpp │ │ │ │ └── simurgh.h │ │ │ ├── java │ │ │ │ └── grader.java │ │ │ └── pas │ │ │ │ ├── grader.pas │ │ │ │ └── graderlib.pas │ │ ├── problem.json │ │ ├── public │ │ │ ├── cpp │ │ │ │ ├── compile_cpp.sh │ │ │ │ ├── grader.cpp │ │ │ │ ├── simurgh.cpp │ │ │ │ └── simurgh.h │ │ │ ├── examples │ │ │ │ └── 01.in │ │ │ ├── java │ │ │ │ ├── compile_java.sh │ │ │ │ ├── grader.java │ │ │ │ ├── run_java.sh │ │ │ │ └── simurgh.java │ │ │ └── pas │ │ │ │ ├── compile_pas.sh │ │ │ │ ├── grader.pas │ │ │ │ ├── graderlib.pas │ │ │ │ └── simurgh.pas │ │ ├── scripts │ │ │ ├── analyze.sh │ │ │ ├── bash_completion │ │ │ │ ├── compile.options │ │ │ │ ├── gen.options │ │ │ │ └── invoke.options │ │ │ ├── compile.sh │ │ │ ├── gen.sh │ │ │ ├── internal │ │ │ │ ├── __init__.py │ │ │ │ ├── gen.py │ │ │ │ ├── gen_data_parser.py │ │ │ │ ├── gen_test.sh │ │ │ │ ├── get_model_solution.py │ │ │ │ ├── get_test_validators.py │ │ │ │ ├── invoke.py │ │ │ │ ├── invoke_test.sh │ │ │ │ ├── json_extract.py │ │ │ │ ├── locations.sh │ │ │ │ ├── pgg.py │ │ │ │ ├── problem_data.sh │ │ │ │ ├── problem_util.sh │ │ │ │ ├── timer.py │ │ │ │ ├── tps_init.sh │ │ │ │ ├── util.py │ │ │ │ └── util.sh │ │ │ ├── invoke.sh │ │ │ ├── make-public.sh │ │ │ ├── run.sh │ │ │ ├── templates │ │ │ │ ├── __init__.py │ │ │ │ ├── exec.cpp.sh │ │ │ │ ├── exec.java.sh │ │ │ │ ├── exec.pas.sh │ │ │ │ ├── public.files │ │ │ │ ├── run.judge.sh │ │ │ │ ├── run.public.sh │ │ │ │ ├── test_name.py │ │ │ │ └── tps_variables.sh │ │ │ └── verify.py │ │ ├── secret │ │ ├── solution │ │ │ ├── ask-all-edges.cpp │ │ │ ├── brute-force-all-trees.cpp │ │ │ ├── brute_force.java │ │ │ ├── complete-graph.cpp │ │ │ ├── increamental-tree.cpp │ │ │ ├── optimal.cpp │ │ │ ├── optimal.java │ │ │ └── simurgh.pas │ │ ├── solutions.json │ │ ├── statement │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ ├── index.json │ │ │ ├── index.md │ │ │ └── simurgh.png │ │ ├── subtasks.json │ │ ├── test.cpp │ │ └── validator │ │ │ ├── Makefile │ │ │ ├── testlib.h │ │ │ ├── validator-complete.cpp │ │ │ ├── validator-full.cpp │ │ │ ├── validator-n240.cpp │ │ │ ├── validator-n50.cpp │ │ │ ├── validator-n7.cpp │ │ │ └── validator.cpp │ └── wiring │ │ ├── .gitignore │ │ ├── .scripts_version │ │ ├── LICENSE │ │ ├── checker │ │ ├── Makefile │ │ ├── checker.cpp │ │ └── testlib.h │ │ ├── editorial │ │ ├── header.html │ │ ├── index.html │ │ ├── index.json │ │ └── index.md │ │ ├── gen │ │ ├── Makefile │ │ ├── data │ │ ├── gen-consecutive.cpp │ │ ├── gen-redsfirst.cpp │ │ ├── gen-smallblocks.cpp │ │ ├── gencode.cpp │ │ ├── manual │ │ │ └── 1.in │ │ └── testlib.h │ │ ├── grader │ │ ├── cpp │ │ │ ├── grader.cpp │ │ │ └── wiring.h │ │ ├── java │ │ │ └── grader.java │ │ └── pas │ │ │ └── grader.pas │ │ ├── problem.json │ │ ├── public │ │ ├── cpp │ │ │ ├── compile_cpp.sh │ │ │ ├── grader.cpp │ │ │ ├── wiring.cpp │ │ │ └── wiring.h │ │ ├── examples │ │ │ ├── 01.in │ │ │ └── 01.out │ │ ├── java │ │ │ ├── compile_java.sh │ │ │ ├── grader.java │ │ │ ├── run_java.sh │ │ │ └── wiring.java │ │ └── pas │ │ │ ├── compile_pas.sh │ │ │ ├── grader.pas │ │ │ └── wiring.pas │ │ ├── scripts │ │ ├── analyze.sh │ │ ├── bash_completion │ │ │ ├── compile.options │ │ │ ├── gen.options │ │ │ └── invoke.options │ │ ├── compile.sh │ │ ├── gen.sh │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── gen.py │ │ │ ├── gen_data_parser.py │ │ │ ├── gen_test.sh │ │ │ ├── get_model_solution.py │ │ │ ├── get_test_validators.py │ │ │ ├── invoke.py │ │ │ ├── invoke_test.sh │ │ │ ├── json_extract.py │ │ │ ├── locations.sh │ │ │ ├── pgg.py │ │ │ ├── problem_data.sh │ │ │ ├── problem_util.sh │ │ │ ├── timer.py │ │ │ ├── tps_init.sh │ │ │ ├── util.py │ │ │ └── util.sh │ │ ├── invoke.sh │ │ ├── make-public.sh │ │ ├── run.sh │ │ ├── templates │ │ │ ├── __init__.py │ │ │ ├── exec.cpp.sh │ │ │ ├── exec.java.sh │ │ │ ├── exec.pas.sh │ │ │ ├── public.files │ │ │ ├── run.judge.sh │ │ │ ├── run.public.sh │ │ │ ├── test_name.py │ │ │ └── tps_variables.sh │ │ └── verify.py │ │ ├── solution │ │ ├── wiring-beta3-tof.cpp │ │ ├── wiring-haas-ac-ternary.cpp │ │ ├── wiring-haas-ac.cpp │ │ ├── wiring-haas-ac.pas │ │ ├── wiring-haas-wa.cpp │ │ ├── wiring-haghani-wa.cpp │ │ ├── wiring-mahdi-ac.cpp │ │ ├── wiring-mahdi-consecutive-tof.cpp │ │ ├── wiring-mahdi-consecutive.cpp │ │ ├── wiring-mahdi-slow.cpp │ │ ├── wiring-mahdi-tof.cpp │ │ ├── wiring-malek-ac.cpp │ │ ├── wiring-roghani-newsmallblocks.cpp │ │ ├── wiring-roghani-redsfirst.cpp │ │ ├── wiring-roghani-smallblocks.cpp │ │ ├── wiring-roghani-smallblocks.java │ │ ├── wiring-saeed-ac.cpp │ │ ├── wiring-saeed-wa.cpp │ │ └── wiring-safarnejad.java │ │ ├── solutions.json │ │ ├── statement │ │ ├── header.html │ │ ├── index.html │ │ ├── index.json │ │ ├── index.md │ │ ├── wiring.png │ │ └── wiring_backup.png │ │ ├── subtasks.json │ │ └── validator │ │ ├── Makefile │ │ ├── testlib.h │ │ ├── validator-consecutive.cpp │ │ ├── validator-redsfirst.cpp │ │ ├── validator-slow.cpp │ │ ├── validator-smallblocks.cpp │ │ └── validator.cpp ├── Communication │ └── prize │ │ ├── .Rhistory │ │ ├── .gitignore │ │ ├── .scripts_version │ │ ├── LICENSE │ │ ├── checker │ │ ├── Makefile │ │ ├── checker.cpp │ │ └── testlib.h │ │ ├── editorial │ │ ├── header.html │ │ ├── index.html │ │ ├── index.json │ │ └── index.md │ │ ├── gen │ │ ├── Makefile │ │ ├── data │ │ ├── gencode.h │ │ ├── gencode_no_limit.cpp │ │ ├── gencode_v2.cpp │ │ ├── manual │ │ │ └── sample-1.in │ │ └── testlib.h │ │ ├── grader │ │ ├── Makefile │ │ ├── cpp │ │ │ ├── grader.cpp │ │ │ └── prize.h │ │ ├── java │ │ │ └── grader.java │ │ ├── manager.cpp │ │ ├── pas │ │ │ ├── grader.pas │ │ │ └── graderlib.pas │ │ └── protocol.txt │ │ ├── problem.json │ │ ├── public │ │ ├── cpp │ │ │ ├── compile_cpp.sh │ │ │ ├── grader.cpp │ │ │ ├── prize.cpp │ │ │ └── prize.h │ │ ├── examples │ │ │ └── 01.in │ │ ├── java │ │ │ ├── compile_java.sh │ │ │ ├── grader.java │ │ │ ├── prize.java │ │ │ └── run_java.sh │ │ └── pas │ │ │ ├── compile_pas.sh │ │ │ ├── grader.pas │ │ │ ├── graderlib.pas │ │ │ └── prize.pas │ │ ├── scripts │ │ ├── analyze.sh │ │ ├── bash_completion │ │ │ ├── compile.options │ │ │ ├── gen.options │ │ │ └── invoke.options │ │ ├── compile.sh │ │ ├── gen.sh │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── gen.py │ │ │ ├── gen_data_parser.py │ │ │ ├── gen_test.sh │ │ │ ├── get_model_solution.py │ │ │ ├── get_test_validators.py │ │ │ ├── invoke.py │ │ │ ├── invoke_test.sh │ │ │ ├── json_extract.py │ │ │ ├── locations.sh │ │ │ ├── pgg.py │ │ │ ├── problem_data.sh │ │ │ ├── problem_util.sh │ │ │ ├── timer.py │ │ │ ├── tps_init.sh │ │ │ ├── util.py │ │ │ └── util.sh │ │ ├── invoke.sh │ │ ├── make-public.sh │ │ ├── run.sh │ │ ├── templates │ │ │ ├── __init__.py │ │ │ ├── exec.cpp.sh │ │ │ ├── exec.java.sh │ │ │ ├── exec.pas.sh │ │ │ ├── post_compile.sh │ │ │ ├── public.files │ │ │ ├── run.judge.sh │ │ │ ├── run.public.sh │ │ │ ├── test_name.py │ │ │ └── tps_variables.sh │ │ └── verify.py │ │ ├── solution │ │ ├── OptimalSolution.cpp │ │ ├── Wrong5100.cpp │ │ ├── frogs-saeed.cpp │ │ ├── frogs_binarysearch.cpp │ │ ├── just2gen.cpp │ │ ├── main.cpp │ │ ├── peyman-9000.cpp │ │ ├── prize-deterministic-improved.cpp │ │ ├── prize-deterministic.cpp │ │ ├── prize-random.cpp │ │ ├── prize.java │ │ ├── prize.pas │ │ ├── prize_pavel.java │ │ ├── q10000.cpp │ │ ├── q10001.cpp │ │ ├── q4999.cpp │ │ ├── q5000.cpp │ │ ├── q5001.cpp │ │ ├── q5199.cpp │ │ ├── q5200.cpp │ │ ├── q5201.cpp │ │ ├── q5399.cpp │ │ ├── q5400.cpp │ │ ├── q5401.cpp │ │ ├── q5599.cpp │ │ ├── q5600.cpp │ │ ├── q5601.cpp │ │ ├── q5799.cpp │ │ ├── q5800.cpp │ │ ├── q5801.cpp │ │ ├── q5999.cpp │ │ ├── q6000.cpp │ │ ├── q6001.cpp │ │ └── q9999.cpp │ │ ├── solutions.json │ │ ├── statement │ │ ├── header.html │ │ ├── index.html │ │ ├── index.json │ │ ├── index.md │ │ └── prize.png │ │ ├── subtasks.json │ │ └── validator │ │ ├── Makefile │ │ ├── testlib.h │ │ ├── validator-no_limit.cpp │ │ ├── validator-v2.cpp │ │ └── validator.cpp ├── OutputOnly │ ├── nowruz │ │ ├── .gitignore │ │ ├── .scripts_version │ │ ├── LICENSE │ │ ├── checker │ │ │ ├── Makefile │ │ │ ├── checker.cpp │ │ │ └── testlib.h │ │ ├── editorial │ │ │ ├── fractal.png │ │ │ ├── haircomb.png │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ ├── index.json │ │ │ ├── index.md │ │ │ ├── random.png │ │ │ ├── sierpinski.png │ │ │ └── snail.png │ │ ├── gen │ │ │ ├── Makefile │ │ │ ├── data │ │ │ ├── data-dev │ │ │ ├── gencode.cpp │ │ │ └── testlib.h │ │ ├── problem.json │ │ ├── public │ │ │ ├── examples │ │ │ │ ├── 01.in │ │ │ │ └── 01.out │ │ │ └── tests │ │ │ │ ├── 01.in │ │ │ │ ├── 02.in │ │ │ │ ├── 03.in │ │ │ │ ├── 04.in │ │ │ │ ├── 05.in │ │ │ │ ├── 06.in │ │ │ │ ├── 07.in │ │ │ │ ├── 08.in │ │ │ │ ├── 09.in │ │ │ │ └── 10.in │ │ ├── scripts │ │ │ ├── analyze.sh │ │ │ ├── bash_completion │ │ │ │ ├── compile.options │ │ │ │ ├── gen.options │ │ │ │ └── invoke.options │ │ │ ├── compile.sh │ │ │ ├── gen.sh │ │ │ ├── internal │ │ │ │ ├── __init__.py │ │ │ │ ├── gen.py │ │ │ │ ├── gen_data_parser.py │ │ │ │ ├── gen_test.sh │ │ │ │ ├── get_model_solution.py │ │ │ │ ├── get_test_validators.py │ │ │ │ ├── invoke.py │ │ │ │ ├── invoke_test.sh │ │ │ │ ├── json_extract.py │ │ │ │ ├── locations.sh │ │ │ │ ├── pgg.py │ │ │ │ ├── problem_data.sh │ │ │ │ ├── problem_util.sh │ │ │ │ ├── timer.py │ │ │ │ ├── tps_init.sh │ │ │ │ ├── util.py │ │ │ │ └── util.sh │ │ │ ├── invoke.sh │ │ │ ├── make-public.sh │ │ │ ├── make_image.py │ │ │ ├── make_image.py.orig │ │ │ ├── make_image2.py │ │ │ ├── run.sh │ │ │ ├── templates │ │ │ │ ├── __init__.py │ │ │ │ ├── exec.cpp.sh │ │ │ │ ├── exec.java.sh │ │ │ │ ├── exec.pas.sh │ │ │ │ ├── public.files │ │ │ │ ├── run.judge.sh │ │ │ │ ├── run.public.sh │ │ │ │ ├── test_name.py │ │ │ │ └── tps_variables.sh │ │ │ └── verify.py │ │ ├── solution │ │ │ ├── addleaves.cpp │ │ │ ├── addleaves_once.cpp │ │ │ ├── addleaves_rand.cpp │ │ │ ├── amd-v1.cpp │ │ │ ├── dfs.cpp │ │ │ ├── haircomb.cpp │ │ │ ├── maxleaves-malek-v1.cpp │ │ │ ├── maxleaves-malek-v2.cpp │ │ │ ├── maxleaves-malek-v3.cpp │ │ │ ├── maxleaves-malek-v4.cpp │ │ │ ├── multi_dfs.cpp │ │ │ ├── notree.cpp │ │ │ ├── oneleaf.cpp │ │ │ └── snail.cpp │ │ ├── solutions.json │ │ ├── statement │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ ├── index.json │ │ │ └── index.md │ │ ├── subtasks.json │ │ └── validator │ │ │ ├── Makefile │ │ │ ├── testlib.h │ │ │ └── validator.cpp │ └── sudoku │ │ ├── .gitignore │ │ ├── .scripts_version │ │ ├── LICENSE │ │ ├── checker │ │ ├── Makefile │ │ ├── checker.cpp │ │ └── testlib.h │ │ ├── gen │ │ ├── Makefile │ │ ├── blocks.cpp │ │ ├── data │ │ ├── manual │ │ │ ├── 01.in │ │ │ └── 02.in │ │ ├── real.cpp │ │ └── testlib.h │ │ ├── problem.json │ │ ├── public │ │ ├── examples │ │ │ ├── 01.in │ │ │ └── 01.out │ │ └── tests │ │ │ ├── 01.in │ │ │ ├── 02.in │ │ │ ├── 03.in │ │ │ ├── 04.in │ │ │ ├── 05.in │ │ │ ├── 06.in │ │ │ ├── 07.in │ │ │ ├── 08.in │ │ │ ├── 09.in │ │ │ └── 10.in │ │ ├── scripts │ │ ├── analyze.sh │ │ ├── bash_completion │ │ │ ├── compile.options │ │ │ ├── gen.options │ │ │ └── invoke.options │ │ ├── compile.sh │ │ ├── gen.sh │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── gen.py │ │ │ ├── gen_data_parser.py │ │ │ ├── gen_test.sh │ │ │ ├── get_model_solution.py │ │ │ ├── get_test_validators.py │ │ │ ├── invoke.py │ │ │ ├── invoke_test.sh │ │ │ ├── json_extract.py │ │ │ ├── locations.sh │ │ │ ├── pgg.py │ │ │ ├── problem_data.sh │ │ │ ├── problem_util.sh │ │ │ ├── timer.py │ │ │ ├── tps_init.sh │ │ │ ├── util.py │ │ │ └── util.sh │ │ ├── invoke.sh │ │ ├── make-public.sh │ │ ├── run.sh │ │ ├── templates │ │ │ ├── __init__.py │ │ │ ├── exec.cpp.sh │ │ │ ├── exec.java.sh │ │ │ ├── exec.pas.sh │ │ │ ├── public.files │ │ │ ├── run.judge.sh │ │ │ ├── run.public.sh │ │ │ ├── test_name.py │ │ │ └── tps_variables.sh │ │ └── verify.py │ │ ├── solution │ │ ├── empty.java │ │ ├── empty.pas │ │ └── sudoku.cpp │ │ ├── solutions.json │ │ ├── statement │ │ ├── Sudoku.svg │ │ ├── header.html │ │ ├── index.html │ │ ├── index.json │ │ ├── index.md │ │ └── sudoku.xlsx │ │ ├── subtasks.json │ │ └── validator │ │ ├── Makefile │ │ ├── testlib.h │ │ └── validator.cpp └── TwoSteps │ └── coins │ ├── .gitignore │ ├── .scripts_version │ ├── LICENSE │ ├── checker │ ├── Makefile │ ├── checker.cpp │ └── testlib.h │ ├── gen │ ├── Makefile │ ├── data │ ├── gen.cpp │ ├── manual │ │ └── 01.in │ ├── outgen.cpp │ ├── special.cpp │ └── testlib.h │ ├── grader │ ├── cpp │ │ ├── coins.h │ │ └── grader.cpp │ ├── java │ │ └── grader.java │ └── pas │ │ └── grader.pas │ ├── problem.json │ ├── public │ ├── cpp │ │ ├── coins.cpp │ │ ├── coins.h │ │ ├── compile_cpp.sh │ │ └── grader.cpp │ ├── examples │ │ └── 01.in │ ├── java │ │ ├── coins.java │ │ ├── compile_java.sh │ │ ├── grader.java │ │ └── run_java.sh │ └── pas │ │ ├── coins.pas │ │ ├── compile_pas.sh │ │ └── grader.pas │ ├── scripts │ ├── analyze.sh │ ├── bash_completion │ │ ├── compile.options │ │ ├── gen.options │ │ └── invoke.options │ ├── compile.sh │ ├── gen.sh │ ├── internal │ │ ├── __init__.py │ │ ├── gen.py │ │ ├── gen_data_parser.py │ │ ├── gen_test.sh │ │ ├── get_model_solution.py │ │ ├── get_test_validators.py │ │ ├── invoke.py │ │ ├── invoke_test.sh │ │ ├── json_extract.py │ │ ├── locations.sh │ │ ├── pgg.py │ │ ├── problem_data.sh │ │ ├── problem_util.sh │ │ ├── timer.py │ │ ├── tps_init.sh │ │ ├── util.py │ │ └── util.sh │ ├── invoke.sh │ ├── make-public.sh │ ├── run.sh │ ├── templates │ │ ├── __init__.py │ │ ├── exec.cpp.sh │ │ ├── exec.java.sh │ │ ├── exec.pas.sh │ │ ├── public.files │ │ ├── run.judge.sh │ │ ├── run.public.sh │ │ ├── test_name.py │ │ └── tps_variables.sh │ └── verify.py │ ├── solution │ ├── c2.cpp │ ├── c3.cpp │ ├── coins.cpp │ ├── coins.java │ ├── coins.pas │ ├── k64.cpp │ ├── k8.cpp │ ├── tof.cpp │ └── wa.cpp │ ├── solutions.json │ ├── statement │ ├── Coins.png │ ├── Coins.svg │ ├── header.html │ ├── index.html │ ├── index.json │ └── index.md │ ├── subtasks.json │ └── validator │ ├── Makefile │ ├── testlib.h │ ├── val-c2.cpp │ ├── val-c3.cpp │ ├── val-k64.cpp │ ├── val-k8.cpp │ └── validator.cpp ├── scripts ├── analyze.sh ├── bash_completion │ ├── compile.options │ ├── crun.options │ ├── export.sh │ ├── gen.options │ ├── invoke.options │ └── stress.options ├── compile.sh ├── crun.sh ├── export.sh ├── exporters │ ├── CMS.py │ └── DOMjudge.py ├── gen.sh ├── internal │ ├── __init__.py │ ├── bash_completion.py │ ├── color_util.py │ ├── colored_cat.py │ ├── compile_solution.sh │ ├── does_test_exist.py │ ├── gen.py │ ├── gen_data_parser.py │ ├── gen_test.sh │ ├── gen_util.sh │ ├── get_global_validators.py │ ├── get_model_solution.py │ ├── get_test_validators.py │ ├── invoke.py │ ├── invoke_test.sh │ ├── invoke_util.sh │ ├── json_extract.py │ ├── list_tests.py │ ├── locations.sh │ ├── pgg.py │ ├── print_test_name.py │ ├── problem_data.sh │ ├── problem_util.sh │ ├── run_util.sh │ ├── stress.py │ ├── stress_single_test.sh │ ├── subtask_summary.sh │ ├── tests_util.py │ ├── timer.py │ ├── tps_init.sh │ ├── util.py │ ├── util.sh │ ├── verbose.py │ ├── version │ └── win_rte_dialog_disabler.cpp ├── invoke.sh ├── make-public.sh ├── run.sh ├── stress.sh ├── templates │ ├── __init__.py │ ├── check_test.sh │ ├── checker_result.sh │ ├── exec.cpp.sh │ ├── exec.java.sh │ ├── exec.pas.sh │ ├── exec.py.sh │ ├── exporters │ │ └── DOMjudge │ │ │ └── checker_builder.sh │ ├── post_compile.sh │ ├── pre_compile.sh │ ├── run.judge.batch.sh │ ├── run.judge.communication.sh │ ├── run.judge.other.sh │ ├── run.judge.two-steps.sh │ ├── run.public.sh │ ├── run_test.sh │ ├── stress_gen_command_with_fstring.py │ ├── stress_test_gen_utils.py │ ├── test_exists.py │ └── test_name.py └── verify.py ├── task-templates └── default │ ├── .gitignore │ ├── .gitlab-ci.yml │ ├── checker │ ├── Makefile │ ├── checker-with-grader.cpp │ ├── checker-without-grader.cpp │ └── testlib.h │ ├── gen │ ├── Makefile │ ├── data │ ├── gen1.cpp │ ├── input.header │ ├── manual │ │ └── small-1.in │ └── testlib.h │ ├── grader │ ├── cpp │ │ ├── __TPARAM_SHORT_NAME__.h │ │ └── grader.cpp │ ├── java │ │ └── grader.java │ └── py │ │ └── grader.py │ ├── problem.json │ ├── public │ ├── examples │ │ ├── 01.in │ │ └── 01.out │ ├── with-grader │ │ ├── cpp │ │ │ ├── __TPARAM_SHORT_NAME__.cpp │ │ │ ├── __TPARAM_SHORT_NAME__.h │ │ │ ├── compile_cpp.sh │ │ │ ├── grader.cpp │ │ │ └── run_cpp.sh │ │ ├── files │ │ ├── java │ │ │ ├── __TPARAM_SHORT_NAME__.java │ │ │ ├── compile_java.sh │ │ │ ├── grader.java │ │ │ └── run_java.sh │ │ └── py │ │ │ ├── __TPARAM_SHORT_NAME__.py │ │ │ ├── compile_py.sh │ │ │ ├── grader.py │ │ │ └── run_py.sh │ └── without-grader │ │ ├── cpp │ │ ├── compile_cpp.sh │ │ └── run_cpp.sh │ │ ├── files │ │ ├── java │ │ ├── compile_java.sh │ │ └── run_java.sh │ │ └── py │ │ ├── compile_py.sh │ │ └── run_py.sh │ ├── scripts │ ├── analyze.sh │ ├── bash_completion │ │ ├── compile.options │ │ ├── crun.options │ │ ├── export.sh │ │ ├── gen.options │ │ ├── invoke.options │ │ └── stress.options │ ├── compile.sh │ ├── crun.sh │ ├── export.sh │ ├── exporters │ │ ├── CMS.py │ │ └── DOMjudge.py │ ├── gen.sh │ ├── internal │ │ ├── __init__.py │ │ ├── bash_completion.py │ │ ├── color_util.py │ │ ├── colored_cat.py │ │ ├── compile_solution.sh │ │ ├── does_test_exist.py │ │ ├── gen.py │ │ ├── gen_data_parser.py │ │ ├── gen_test.sh │ │ ├── gen_util.sh │ │ ├── get_global_validators.py │ │ ├── get_model_solution.py │ │ ├── get_test_validators.py │ │ ├── invoke.py │ │ ├── invoke_test.sh │ │ ├── invoke_util.sh │ │ ├── json_extract.py │ │ ├── list_tests.py │ │ ├── locations.sh │ │ ├── pgg.py │ │ ├── print_test_name.py │ │ ├── problem_data.sh │ │ ├── problem_util.sh │ │ ├── run_util.sh │ │ ├── stress.py │ │ ├── stress_single_test.sh │ │ ├── subtask_summary.sh │ │ ├── tests_util.py │ │ ├── timer.py │ │ ├── tps_init.sh │ │ ├── util.py │ │ ├── util.sh │ │ ├── verbose.py │ │ ├── version │ │ └── win_rte_dialog_disabler.cpp │ ├── invoke.sh │ ├── make-public.sh │ ├── run.sh │ ├── stress.sh │ ├── templates │ │ ├── __init__.py │ │ ├── check_test.sh │ │ ├── checker_result.sh │ │ ├── exec.cpp.sh │ │ ├── exec.java.sh │ │ ├── exec.pas.sh │ │ ├── exec.py.sh │ │ ├── exporters │ │ │ └── DOMjudge │ │ │ │ └── checker_builder.sh │ │ ├── post_compile.sh │ │ ├── pre_compile.sh │ │ ├── run.judge.batch.sh │ │ ├── run.judge.communication.sh │ │ ├── run.judge.other.sh │ │ ├── run.judge.two-steps.sh │ │ ├── run.public.sh │ │ ├── run_test.sh │ │ ├── stress_gen_command_with_fstring.py │ │ ├── stress_test_gen_utils.py │ │ ├── test_exists.py │ │ └── test_name.py │ └── verify.py │ ├── solution │ ├── with-grader │ │ ├── correct1.cpp │ │ ├── correct1.java │ │ └── correct1.py │ └── without-grader │ │ ├── correct1.cpp │ │ ├── correct1.java │ │ └── correct1.py │ ├── solutions.json │ ├── statement │ ├── md │ │ ├── assets │ │ │ ├── IOI-2017.svg │ │ │ ├── SourceSansPro │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── SourceSansPro.css │ │ │ │ ├── eot │ │ │ │ │ ├── SourceSansPro-Light.eot │ │ │ │ │ ├── SourceSansPro-Regular.eot │ │ │ │ │ └── SourceSansPro-Semibold.eot │ │ │ │ ├── ttf │ │ │ │ │ ├── SourceSansPro-Light.ttf │ │ │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ │ │ └── SourceSansPro-Semibold.ttf │ │ │ │ └── woff2 │ │ │ │ │ ├── SourceSansPro-Light.ttf.woff2 │ │ │ │ │ ├── SourceSansPro-Regular.ttf.woff2 │ │ │ │ │ └── SourceSansPro-Semibold.ttf.woff2 │ │ │ ├── katex-fonts │ │ │ │ ├── KaTeX_AMS-Regular.eot │ │ │ │ ├── KaTeX_AMS-Regular.ttf │ │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ │ ├── KaTeX_Caligraphic-Bold.eot │ │ │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ │ ├── KaTeX_Caligraphic-Regular.eot │ │ │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ │ ├── KaTeX_Fraktur-Bold.eot │ │ │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ │ ├── KaTeX_Fraktur-Regular.eot │ │ │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ │ ├── KaTeX_Main-Bold.eot │ │ │ │ ├── KaTeX_Main-Bold.ttf │ │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ │ ├── KaTeX_Main-Italic.eot │ │ │ │ ├── KaTeX_Main-Italic.ttf │ │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ │ ├── KaTeX_Main-Regular.eot │ │ │ │ ├── KaTeX_Main-Regular.ttf │ │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ │ ├── KaTeX_Math-BoldItalic.eot │ │ │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ │ ├── KaTeX_Math-Italic.eot │ │ │ │ ├── KaTeX_Math-Italic.ttf │ │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ │ ├── KaTeX_Math-Regular.eot │ │ │ │ ├── KaTeX_Math-Regular.ttf │ │ │ │ ├── KaTeX_Math-Regular.woff │ │ │ │ ├── KaTeX_Math-Regular.woff2 │ │ │ │ ├── KaTeX_SansSerif-Bold.eot │ │ │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ │ ├── KaTeX_SansSerif-Italic.eot │ │ │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ │ ├── KaTeX_SansSerif-Regular.eot │ │ │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ │ ├── KaTeX_Script-Regular.eot │ │ │ │ ├── KaTeX_Script-Regular.ttf │ │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ │ ├── KaTeX_Size1-Regular.eot │ │ │ │ ├── KaTeX_Size1-Regular.ttf │ │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ │ ├── KaTeX_Size2-Regular.eot │ │ │ │ ├── KaTeX_Size2-Regular.ttf │ │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ │ ├── KaTeX_Size3-Regular.eot │ │ │ │ ├── KaTeX_Size3-Regular.ttf │ │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ │ ├── KaTeX_Size4-Regular.eot │ │ │ │ ├── KaTeX_Size4-Regular.ttf │ │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ │ ├── KaTeX_Typewriter-Regular.eot │ │ │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ │ └── KaTeX_Typewriter-Regular.woff2 │ │ │ ├── libs.js │ │ │ ├── style.css │ │ │ └── w3.js │ │ ├── board.png │ │ ├── header.html │ │ ├── index-with-grader.md │ │ ├── index-without-grader.md │ │ ├── index.html │ │ ├── index.json │ │ ├── logo.png │ │ └── style.css │ └── tex │ │ ├── .gitignore │ │ ├── board.png │ │ ├── header.tex │ │ ├── logo.png │ │ ├── samples │ │ ├── 1.in │ │ └── 1.out │ │ ├── statement-with-grader.tex │ │ ├── statement-without-grader.tex │ │ └── task.sty │ ├── subtasks.json │ ├── task-template-instantiate.sh │ └── validator │ ├── Makefile │ ├── testlib.h │ └── validator.cpp ├── tests ├── .gitignore ├── README.html ├── README.md ├── assets │ ├── IOI-2017.svg │ ├── SourceSansPro │ │ ├── LICENSE.txt │ │ ├── SourceSansPro.css │ │ ├── eot │ │ │ ├── SourceSansPro-Light.eot │ │ │ ├── SourceSansPro-Regular.eot │ │ │ └── SourceSansPro-Semibold.eot │ │ ├── ttf │ │ │ ├── SourceSansPro-Light.ttf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ └── SourceSansPro-Semibold.ttf │ │ └── woff2 │ │ │ ├── SourceSansPro-Light.ttf.woff2 │ │ │ ├── SourceSansPro-Regular.ttf.woff2 │ │ │ └── SourceSansPro-Semibold.ttf.woff2 │ ├── katex-fonts │ │ ├── KaTeX_AMS-Regular.eot │ │ ├── KaTeX_AMS-Regular.ttf │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.eot │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.eot │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.eot │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.eot │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.eot │ │ ├── KaTeX_Main-Bold.ttf │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-Italic.eot │ │ ├── KaTeX_Main-Italic.ttf │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.eot │ │ ├── KaTeX_Main-Regular.ttf │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.eot │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.eot │ │ ├── KaTeX_Math-Italic.ttf │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_Math-Regular.eot │ │ ├── KaTeX_Math-Regular.ttf │ │ ├── KaTeX_Math-Regular.woff │ │ ├── KaTeX_Math-Regular.woff2 │ │ ├── KaTeX_SansSerif-Bold.eot │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.eot │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.eot │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.eot │ │ ├── KaTeX_Script-Regular.ttf │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.eot │ │ ├── KaTeX_Size1-Regular.ttf │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.eot │ │ ├── KaTeX_Size2-Regular.ttf │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.eot │ │ ├── KaTeX_Size3-Regular.ttf │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.eot │ │ ├── KaTeX_Size4-Regular.ttf │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.eot │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ ├── KaTeX_Typewriter-Regular.woff │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── libs.js │ ├── style.css │ └── w3.js ├── capture-all.sh ├── command │ ├── bc-forward │ │ ├── capture-all.sh │ │ ├── captured-data │ │ │ ├── README.md │ │ │ └── captured-tests.txt │ │ ├── captured-tests.sh │ │ ├── stage │ │ │ ├── a_dir │ │ │ │ └── a_file │ │ │ ├── a_file │ │ │ ├── problem.json │ │ │ └── scripts │ │ │ │ ├── bar.sh │ │ │ │ ├── bash_completion │ │ │ │ ├── bar.sh │ │ │ │ └── foo.py │ │ │ │ ├── foo.py │ │ │ │ └── internal │ │ │ │ └── tps_init.sh │ │ └── test-all.sh │ ├── capture-all.sh │ ├── empty-scripts │ │ ├── capture-all.sh │ │ ├── captured-data │ │ │ ├── README.md │ │ │ ├── captured-tests.txt │ │ │ ├── cmd-p │ │ │ │ └── stderr │ │ │ ├── cmd │ │ │ │ └── stderr │ │ │ └── no-cmd │ │ │ │ └── stdout │ │ ├── captured-tests.sh │ │ ├── stage │ │ │ ├── problem.json │ │ │ └── scripts │ │ │ │ └── internal │ │ │ │ └── tps_init.sh │ │ └── test-all.sh │ ├── init │ │ ├── args │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ └── stderr │ │ │ │ ├── k-10 │ │ │ │ │ └── stderr │ │ │ │ ├── k-13 │ │ │ │ │ └── stderr │ │ │ │ ├── k-14 │ │ │ │ │ └── stderr │ │ │ │ ├── k-15 │ │ │ │ │ └── stderr │ │ │ │ ├── k-16 │ │ │ │ │ └── stderr │ │ │ │ ├── k-17 │ │ │ │ │ └── stderr │ │ │ │ ├── k-18 │ │ │ │ │ └── stderr │ │ │ │ ├── k-19 │ │ │ │ │ └── stderr │ │ │ │ ├── k-2 │ │ │ │ │ └── stderr │ │ │ │ ├── k-20 │ │ │ │ │ └── stderr │ │ │ │ ├── k-21 │ │ │ │ │ └── stderr │ │ │ │ ├── k-22 │ │ │ │ │ └── stderr │ │ │ │ ├── k-23 │ │ │ │ │ └── stderr │ │ │ │ ├── k-24 │ │ │ │ │ └── stderr │ │ │ │ ├── k-25 │ │ │ │ │ └── stderr │ │ │ │ ├── k-26 │ │ │ │ │ └── stderr │ │ │ │ ├── k-27 │ │ │ │ │ └── stderr │ │ │ │ ├── k-28 │ │ │ │ │ └── stderr │ │ │ │ ├── k-29 │ │ │ │ │ └── stderr │ │ │ │ ├── k-30 │ │ │ │ │ └── stderr │ │ │ │ ├── k-32 │ │ │ │ │ └── stderr │ │ │ │ ├── k-34 │ │ │ │ │ └── stderr │ │ │ │ ├── k-35 │ │ │ │ │ └── stderr │ │ │ │ ├── k-36 │ │ │ │ │ └── stderr │ │ │ │ ├── k-39 │ │ │ │ │ └── stderr │ │ │ │ ├── k-40 │ │ │ │ │ └── stderr │ │ │ │ ├── k-43 │ │ │ │ │ └── stderr │ │ │ │ ├── k-45 │ │ │ │ │ └── stderr │ │ │ │ ├── k-47 │ │ │ │ │ └── stderr │ │ │ │ ├── k-48 │ │ │ │ │ └── stderr │ │ │ │ ├── k-49 │ │ │ │ │ └── stderr │ │ │ │ ├── k-5 │ │ │ │ │ └── stderr │ │ │ │ ├── k-52 │ │ │ │ │ └── stderr │ │ │ │ ├── k-53 │ │ │ │ │ └── stderr │ │ │ │ ├── k-56 │ │ │ │ │ └── stderr │ │ │ │ ├── k-57 │ │ │ │ │ └── stderr │ │ │ │ ├── k-58 │ │ │ │ │ └── stderr │ │ │ │ ├── k-59 │ │ │ │ │ └── stderr │ │ │ │ ├── k-6 │ │ │ │ │ └── stderr │ │ │ │ ├── k-60 │ │ │ │ │ └── stderr │ │ │ │ ├── k-61 │ │ │ │ │ └── stderr │ │ │ │ ├── k-62 │ │ │ │ │ └── stderr │ │ │ │ ├── k-63 │ │ │ │ │ └── stderr │ │ │ │ ├── k-64 │ │ │ │ │ └── stderr │ │ │ │ ├── k-65 │ │ │ │ │ └── stderr │ │ │ │ ├── k-66 │ │ │ │ │ └── stderr │ │ │ │ ├── k-67 │ │ │ │ │ └── stderr │ │ │ │ ├── k-68 │ │ │ │ │ └── stderr │ │ │ │ ├── k-69 │ │ │ │ │ └── stderr │ │ │ │ ├── k-70 │ │ │ │ │ └── stderr │ │ │ │ ├── k-71 │ │ │ │ │ └── stderr │ │ │ │ ├── k-72 │ │ │ │ │ └── stderr │ │ │ │ ├── k-73 │ │ │ │ │ └── stderr │ │ │ │ ├── k-74 │ │ │ │ │ └── stderr │ │ │ │ ├── k-75 │ │ │ │ │ └── stderr │ │ │ │ ├── k-76 │ │ │ │ │ └── stderr │ │ │ │ ├── k-77 │ │ │ │ │ └── stderr │ │ │ │ ├── k-78 │ │ │ │ │ └── stderr │ │ │ │ ├── k-79 │ │ │ │ │ └── stderr │ │ │ │ ├── k-80 │ │ │ │ │ └── stderr │ │ │ │ ├── k-81 │ │ │ │ │ └── stderr │ │ │ │ ├── k-82 │ │ │ │ │ └── stderr │ │ │ │ └── k-9 │ │ │ │ │ └── stderr │ │ │ ├── captured-tests.sh │ │ │ ├── stage │ │ │ │ ├── another_dir │ │ │ │ │ └── a_file │ │ │ │ ├── another_file │ │ │ │ ├── templates1 │ │ │ │ │ ├── default │ │ │ │ │ │ └── a_file │ │ │ │ │ ├── file_x │ │ │ │ │ └── tpl1 │ │ │ │ │ │ └── a_file │ │ │ │ └── templates2 │ │ │ │ │ ├── default │ │ │ │ │ └── tpl2 │ │ │ │ │ └── a_file │ │ │ └── test-all.sh │ │ ├── bash_completion │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ └── captured-tests.txt │ │ │ ├── captured-tests.sh │ │ │ ├── stage │ │ │ │ ├── templates1 │ │ │ │ │ ├── default │ │ │ │ │ │ └── a_file │ │ │ │ │ └── tpl1 │ │ │ │ │ │ └── a_file │ │ │ │ └── templates2 │ │ │ │ │ └── tpl2 │ │ │ │ │ └── a_file │ │ │ └── test-all.sh │ │ ├── capture-all.sh │ │ ├── definitions.sh │ │ ├── test-all.sh │ │ └── ttis_functions │ │ │ ├── capture-all.sh │ │ │ ├── clone_template │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ ├── 0_a_new_dir │ │ │ │ │ │ │ ├── .hidden_dir │ │ │ │ │ │ │ │ └── .another_hidden_file │ │ │ │ │ │ │ ├── .hidden_file │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ │ └── another_file │ │ │ │ │ │ │ ├── a_file │ │ │ │ │ │ │ └── result.txt │ │ │ │ │ │ └── 1_templates_dir_default │ │ │ │ │ │ │ ├── .hidden_dir │ │ │ │ │ │ │ └── .another_hidden_file │ │ │ │ │ │ │ ├── .hidden_file │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ └── another_file │ │ │ │ │ │ │ ├── a_file │ │ │ │ │ │ │ ├── task-template-instantiate.orig-ttis.sh │ │ │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ ├── 0_a_new_dir │ │ │ │ │ │ │ ├── .hidden_dir │ │ │ │ │ │ │ │ └── .another_hidden_file │ │ │ │ │ │ │ ├── .hidden_file │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ │ └── another_file │ │ │ │ │ │ │ ├── a_file │ │ │ │ │ │ │ └── result.txt │ │ │ │ │ │ └── 1_templates_dir_default │ │ │ │ │ │ │ ├── .hidden_dir │ │ │ │ │ │ │ └── .another_hidden_file │ │ │ │ │ │ │ ├── .hidden_file │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ └── another_file │ │ │ │ │ │ │ ├── a_file │ │ │ │ │ │ │ ├── task-template-instantiate.orig-ttis.sh │ │ │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-2 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ ├── 0_another_new_dir │ │ │ │ │ │ │ ├── .hidden_dir │ │ │ │ │ │ │ │ └── .another_hidden_file │ │ │ │ │ │ │ ├── .hidden_file │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ │ └── another_file │ │ │ │ │ │ │ ├── a_file │ │ │ │ │ │ │ └── result.txt │ │ │ │ │ │ └── 1_templates_dir_default │ │ │ │ │ │ │ ├── .hidden_dir │ │ │ │ │ │ │ └── .another_hidden_file │ │ │ │ │ │ │ ├── .hidden_file │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ └── another_file │ │ │ │ │ │ │ ├── a_file │ │ │ │ │ │ │ ├── task-template-instantiate.orig-ttis.sh │ │ │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-3 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ ├── 0_a_new_dir │ │ │ │ │ │ │ └── result.txt │ │ │ │ │ │ └── 1_templates_dir_empty │ │ │ │ │ │ │ ├── task-template-instantiate.orig-ttis.sh │ │ │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-4 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ ├── 0_a_new_dir │ │ │ │ │ │ │ └── result.txt │ │ │ │ │ │ └── 1_templates_dir_empty │ │ │ │ │ │ │ ├── task-template-instantiate.orig-ttis.sh │ │ │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-5 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ ├── 0_another_new_dir │ │ │ │ │ │ │ └── result.txt │ │ │ │ │ │ └── 1_templates_dir_empty │ │ │ │ │ │ │ ├── task-template-instantiate.orig-ttis.sh │ │ │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-6 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ ├── 0_a_new_dir │ │ │ │ │ │ │ ├── one_file │ │ │ │ │ │ │ └── result.txt │ │ │ │ │ │ └── 1_templates_dir_single │ │ │ │ │ │ │ ├── one_file │ │ │ │ │ │ │ ├── task-template-instantiate.orig-ttis.sh │ │ │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-7 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ ├── 0_a_new_dir │ │ │ │ │ │ │ ├── one_file │ │ │ │ │ │ │ └── result.txt │ │ │ │ │ │ └── 1_templates_dir_single │ │ │ │ │ │ │ ├── one_file │ │ │ │ │ │ │ ├── task-template-instantiate.orig-ttis.sh │ │ │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── stderr │ │ │ │ └── k-8 │ │ │ │ │ ├── probed_files │ │ │ │ │ ├── 0_another_new_dir │ │ │ │ │ │ ├── one_file │ │ │ │ │ │ └── result.txt │ │ │ │ │ └── 1_templates_dir_single │ │ │ │ │ │ ├── one_file │ │ │ │ │ │ ├── task-template-instantiate.orig-ttis.sh │ │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── stderr │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage │ │ │ │ └── templates_dir │ │ │ │ │ ├── default │ │ │ │ │ ├── .hidden_dir │ │ │ │ │ │ └── .another_hidden_file │ │ │ │ │ ├── .hidden_file │ │ │ │ │ ├── a_dir │ │ │ │ │ │ └── another_file │ │ │ │ │ ├── a_file │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ ├── empty │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── single │ │ │ │ │ ├── one_file │ │ │ │ │ └── task-template-instantiate.sh │ │ │ └── test-all.sh │ │ │ ├── definitions.sh │ │ │ ├── general_prompt │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ └── stderr │ │ │ │ ├── k-10 │ │ │ │ │ └── stderr │ │ │ │ ├── k-12 │ │ │ │ │ └── stderr │ │ │ │ ├── k-13 │ │ │ │ │ └── stderr │ │ │ │ ├── k-15 │ │ │ │ │ └── stderr │ │ │ │ ├── k-17 │ │ │ │ │ └── stderr │ │ │ │ ├── k-19 │ │ │ │ │ └── stderr │ │ │ │ ├── k-2 │ │ │ │ │ └── stderr │ │ │ │ ├── k-20 │ │ │ │ │ └── stderr │ │ │ │ └── k-22 │ │ │ │ │ └── stderr │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage │ │ │ │ └── templates_dir │ │ │ │ │ └── default │ │ │ │ │ └── task-template-instantiate.sh │ │ │ └── test-all.sh │ │ │ ├── generate_random_string │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ └── stderr │ │ │ │ ├── k-2 │ │ │ │ │ └── stderr │ │ │ │ ├── k-3 │ │ │ │ │ └── stderr │ │ │ │ ├── k-4 │ │ │ │ │ └── stderr │ │ │ │ └── k-8 │ │ │ │ │ └── stdout │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage │ │ │ │ └── templates_dir │ │ │ │ │ ├── template1 │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── template2 │ │ │ │ │ └── task-template-instantiate.sh │ │ │ └── test-all.sh │ │ │ ├── move_dir_contents │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-10 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-11 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-12 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-13 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ ├── p.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-14 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ ├── p.txt │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-15 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ └── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-16 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ └── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-17 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ └── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-18 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ ├── p.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-19 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-2 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-20 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ ├── p.txt │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-21 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-22 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ ├── x.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-23 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ └── dest │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-24 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── dest │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-25 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ └── dest │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-26 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ └── dest │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-27 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ ├── 1_templates_dir_dir1 │ │ │ │ │ │ │ └── f1.txt │ │ │ │ │ │ └── 2_templates_dir_dir2 │ │ │ │ │ │ │ └── f2.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-3 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-4 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-5 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-6 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-7 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ ├── k-8 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ │ └── k-9 │ │ │ │ │ ├── probed_files │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ ├── aa │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ ├── ff │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ └── b │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── stderr │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage │ │ │ │ └── templates_dir │ │ │ │ │ ├── template1 │ │ │ │ │ ├── .hdir │ │ │ │ │ │ └── p.txt │ │ │ │ │ ├── aa │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ ├── ff │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ └── y.txt │ │ │ │ │ ├── b │ │ │ │ │ │ └── .hidden │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── template2 │ │ │ │ │ ├── dir1 │ │ │ │ │ └── f1.txt │ │ │ │ │ ├── dir2 │ │ │ │ │ └── f2.txt │ │ │ │ │ └── task-template-instantiate.sh │ │ │ └── test-all.sh │ │ │ ├── prompt │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ └── stderr │ │ │ │ ├── k-100 │ │ │ │ │ └── stderr │ │ │ │ ├── k-101 │ │ │ │ │ └── stderr │ │ │ │ ├── k-108 │ │ │ │ │ └── stderr │ │ │ │ ├── k-13 │ │ │ │ │ └── stderr │ │ │ │ ├── k-15 │ │ │ │ │ └── stderr │ │ │ │ ├── k-16 │ │ │ │ │ └── stderr │ │ │ │ ├── k-18 │ │ │ │ │ └── stderr │ │ │ │ ├── k-2 │ │ │ │ │ └── stderr │ │ │ │ ├── k-28 │ │ │ │ │ └── stderr │ │ │ │ ├── k-29 │ │ │ │ │ └── stderr │ │ │ │ ├── k-3 │ │ │ │ │ └── stderr │ │ │ │ ├── k-30 │ │ │ │ │ └── stderr │ │ │ │ ├── k-31 │ │ │ │ │ └── stderr │ │ │ │ ├── k-32 │ │ │ │ │ └── stderr │ │ │ │ ├── k-33 │ │ │ │ │ └── stderr │ │ │ │ ├── k-38 │ │ │ │ │ └── stderr │ │ │ │ ├── k-39 │ │ │ │ │ └── stderr │ │ │ │ ├── k-4 │ │ │ │ │ └── stderr │ │ │ │ ├── k-41 │ │ │ │ │ └── stderr │ │ │ │ ├── k-42 │ │ │ │ │ └── stderr │ │ │ │ ├── k-43 │ │ │ │ │ └── stderr │ │ │ │ ├── k-44 │ │ │ │ │ └── stderr │ │ │ │ ├── k-45 │ │ │ │ │ └── stderr │ │ │ │ ├── k-46 │ │ │ │ │ └── stderr │ │ │ │ ├── k-47 │ │ │ │ │ └── stderr │ │ │ │ ├── k-48 │ │ │ │ │ └── stderr │ │ │ │ ├── k-5 │ │ │ │ │ └── stderr │ │ │ │ ├── k-57 │ │ │ │ │ └── stderr │ │ │ │ ├── k-58 │ │ │ │ │ └── stderr │ │ │ │ ├── k-59 │ │ │ │ │ └── stderr │ │ │ │ ├── k-60 │ │ │ │ │ └── stderr │ │ │ │ ├── k-61 │ │ │ │ │ └── stderr │ │ │ │ ├── k-68 │ │ │ │ │ └── stderr │ │ │ │ ├── k-69 │ │ │ │ │ └── stderr │ │ │ │ ├── k-70 │ │ │ │ │ └── stderr │ │ │ │ ├── k-71 │ │ │ │ │ └── stderr │ │ │ │ ├── k-73 │ │ │ │ │ └── stderr │ │ │ │ ├── k-74 │ │ │ │ │ └── stderr │ │ │ │ ├── k-75 │ │ │ │ │ └── stderr │ │ │ │ ├── k-76 │ │ │ │ │ └── stderr │ │ │ │ ├── k-77 │ │ │ │ │ └── stderr │ │ │ │ ├── k-78 │ │ │ │ │ └── stderr │ │ │ │ ├── k-79 │ │ │ │ │ └── stderr │ │ │ │ ├── k-80 │ │ │ │ │ └── stderr │ │ │ │ ├── k-81 │ │ │ │ │ └── stderr │ │ │ │ ├── k-94 │ │ │ │ │ └── stderr │ │ │ │ ├── k-95 │ │ │ │ │ └── stderr │ │ │ │ ├── k-96 │ │ │ │ │ └── stderr │ │ │ │ ├── k-97 │ │ │ │ │ └── stderr │ │ │ │ ├── k-98 │ │ │ │ │ └── stderr │ │ │ │ └── k-99 │ │ │ │ │ └── stderr │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage │ │ │ │ └── templates_dir │ │ │ │ │ ├── default │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── template1 │ │ │ │ │ └── task-template-instantiate.sh │ │ │ └── test-all.sh │ │ │ ├── py_regex_replace_in_files │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── c-0.args │ │ │ │ │ │ │ ├── c-0.txt │ │ │ │ │ │ │ ├── c-1.args │ │ │ │ │ │ │ ├── c-1.txt │ │ │ │ │ │ │ ├── c-10.args │ │ │ │ │ │ │ ├── c-10.txt │ │ │ │ │ │ │ ├── c-11.args │ │ │ │ │ │ │ ├── c-11.txt │ │ │ │ │ │ │ ├── c-12.args │ │ │ │ │ │ │ ├── c-12.txt │ │ │ │ │ │ │ ├── c-13.args │ │ │ │ │ │ │ ├── c-13.txt │ │ │ │ │ │ │ ├── c-14.args │ │ │ │ │ │ │ ├── c-14.txt │ │ │ │ │ │ │ ├── c-15.args │ │ │ │ │ │ │ ├── c-15.txt │ │ │ │ │ │ │ ├── c-16.args │ │ │ │ │ │ │ ├── c-16.txt │ │ │ │ │ │ │ ├── c-17.args │ │ │ │ │ │ │ ├── c-17.txt │ │ │ │ │ │ │ ├── c-18.args │ │ │ │ │ │ │ ├── c-18.txt │ │ │ │ │ │ │ ├── c-19.args │ │ │ │ │ │ │ ├── c-19.txt │ │ │ │ │ │ │ ├── c-2.args │ │ │ │ │ │ │ ├── c-2.txt │ │ │ │ │ │ │ ├── c-20.args │ │ │ │ │ │ │ ├── c-20.txt │ │ │ │ │ │ │ ├── c-21.args │ │ │ │ │ │ │ ├── c-21.txt │ │ │ │ │ │ │ ├── c-22.args │ │ │ │ │ │ │ ├── c-22.txt │ │ │ │ │ │ │ ├── c-3.args │ │ │ │ │ │ │ ├── c-3.txt │ │ │ │ │ │ │ ├── c-4.args │ │ │ │ │ │ │ ├── c-4.txt │ │ │ │ │ │ │ ├── c-5.args │ │ │ │ │ │ │ ├── c-5.txt │ │ │ │ │ │ │ ├── c-6.args │ │ │ │ │ │ │ ├── c-6.txt │ │ │ │ │ │ │ ├── c-7.args │ │ │ │ │ │ │ ├── c-7.txt │ │ │ │ │ │ │ ├── c-8.args │ │ │ │ │ │ │ ├── c-8.txt │ │ │ │ │ │ │ ├── c-9.args │ │ │ │ │ │ │ ├── c-9.txt │ │ │ │ │ │ │ └── c1.in │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-10 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 1_templates_dir_dir1 │ │ │ │ │ │ │ └── str1.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-2 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-3 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-4 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-5 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-6 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-7 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ └── stderr │ │ │ │ ├── k-8 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ │ │ └── boo.sh │ │ │ │ │ └── stderr │ │ │ │ └── k-9 │ │ │ │ │ ├── probed_files │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ └── boo.sh │ │ │ │ │ │ └── boo.sh │ │ │ │ │ └── stderr │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage │ │ │ │ └── templates_dir │ │ │ │ │ ├── template1 │ │ │ │ │ ├── c1.in │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ ├── template2 │ │ │ │ │ ├── .foo.sh │ │ │ │ │ ├── a_dir │ │ │ │ │ │ └── boo.sh │ │ │ │ │ ├── boo.sh │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── template3 │ │ │ │ │ ├── dir1 │ │ │ │ │ └── str1.txt │ │ │ │ │ └── task-template-instantiate.sh │ │ │ └── test-all.sh │ │ │ ├── replace │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── c-0.args │ │ │ │ │ │ │ ├── c-0.out │ │ │ │ │ │ │ ├── c-0.txt │ │ │ │ │ │ │ ├── c-1.args │ │ │ │ │ │ │ ├── c-1.out │ │ │ │ │ │ │ ├── c-1.txt │ │ │ │ │ │ │ ├── c-10.args │ │ │ │ │ │ │ ├── c-10.out │ │ │ │ │ │ │ ├── c-10.txt │ │ │ │ │ │ │ ├── c-11.args │ │ │ │ │ │ │ ├── c-11.out │ │ │ │ │ │ │ ├── c-11.txt │ │ │ │ │ │ │ ├── c-2.args │ │ │ │ │ │ │ ├── c-2.out │ │ │ │ │ │ │ ├── c-2.txt │ │ │ │ │ │ │ ├── c-3.args │ │ │ │ │ │ │ ├── c-3.out │ │ │ │ │ │ │ ├── c-3.txt │ │ │ │ │ │ │ ├── c-4.args │ │ │ │ │ │ │ ├── c-4.out │ │ │ │ │ │ │ ├── c-4.txt │ │ │ │ │ │ │ ├── c-5.args │ │ │ │ │ │ │ ├── c-5.out │ │ │ │ │ │ │ ├── c-5.txt │ │ │ │ │ │ │ ├── c-6.args │ │ │ │ │ │ │ ├── c-6.out │ │ │ │ │ │ │ ├── c-6.txt │ │ │ │ │ │ │ ├── c-7.args │ │ │ │ │ │ │ ├── c-7.out │ │ │ │ │ │ │ ├── c-7.txt │ │ │ │ │ │ │ ├── c-8.args │ │ │ │ │ │ │ ├── c-8.out │ │ │ │ │ │ │ ├── c-8.txt │ │ │ │ │ │ │ ├── c-9.args │ │ │ │ │ │ │ ├── c-9.out │ │ │ │ │ │ │ ├── c-9.txt │ │ │ │ │ │ │ ├── c1.in │ │ │ │ │ │ │ ├── d-0.args │ │ │ │ │ │ │ ├── d-0 │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── f2.in │ │ │ │ │ │ │ ├── f3.in │ │ │ │ │ │ │ ├── f4.in │ │ │ │ │ │ │ ├── f5.in │ │ │ │ │ │ │ ├── f6.in │ │ │ │ │ │ │ ├── f7.in │ │ │ │ │ │ │ └── f8.in │ │ │ │ │ │ │ ├── d-1.args │ │ │ │ │ │ │ ├── d-1 │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── f2.in │ │ │ │ │ │ │ ├── f3.in │ │ │ │ │ │ │ ├── f4.in │ │ │ │ │ │ │ ├── f5.in │ │ │ │ │ │ │ ├── f6.in │ │ │ │ │ │ │ ├── f7.in │ │ │ │ │ │ │ └── f8.in │ │ │ │ │ │ │ ├── d-2.args │ │ │ │ │ │ │ ├── d-2 │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── f2.in │ │ │ │ │ │ │ ├── f3.in │ │ │ │ │ │ │ ├── f4.in │ │ │ │ │ │ │ ├── f5.in │ │ │ │ │ │ │ ├── f6.in │ │ │ │ │ │ │ ├── f7.in │ │ │ │ │ │ │ └── f8.in │ │ │ │ │ │ │ ├── d-3.args │ │ │ │ │ │ │ ├── d-3 │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── f2.in │ │ │ │ │ │ │ ├── f3.in │ │ │ │ │ │ │ ├── f4.in │ │ │ │ │ │ │ ├── f5.in │ │ │ │ │ │ │ ├── f6.in │ │ │ │ │ │ │ ├── f7.in │ │ │ │ │ │ │ └── f8.in │ │ │ │ │ │ │ ├── d-4.args │ │ │ │ │ │ │ ├── d-4 │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── f2.in │ │ │ │ │ │ │ ├── f3.in │ │ │ │ │ │ │ ├── f4.in │ │ │ │ │ │ │ ├── f5.in │ │ │ │ │ │ │ ├── f6.in │ │ │ │ │ │ │ ├── f7.in │ │ │ │ │ │ │ └── f8.in │ │ │ │ │ │ │ └── in_dir1 │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── f2.in │ │ │ │ │ │ │ ├── f3.in │ │ │ │ │ │ │ ├── f4.in │ │ │ │ │ │ │ ├── f5.in │ │ │ │ │ │ │ ├── f6.in │ │ │ │ │ │ │ ├── f7.in │ │ │ │ │ │ │ └── f8.in │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-10 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-11 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-12 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-13 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-14 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-15 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-16 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-17 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-18 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-19 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-2 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-20 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-21 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-22 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-23 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .trs2 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ ├── trs2 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-24 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .trs.2 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs.2.py │ │ │ │ │ │ │ ├── .trs.2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs.2.py │ │ │ │ │ │ │ ├── trs.2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs.2.py │ │ │ │ │ │ │ ├── .trs.2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs.2.py │ │ │ │ │ │ │ ├── trs.2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-25 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .trs.2.py │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .trs.2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-26 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-27 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 1_templates_dir_dir1 │ │ │ │ │ │ │ └── str1.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-28 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 1_templates_dir_dir1 │ │ │ │ │ │ │ └── str1.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-29 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 1_templates_dir_dir1 │ │ │ │ │ │ │ └── str1.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-3 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-4 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-5 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-6 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .trs2 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ ├── trs2 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ │ ├── .trs2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ │ ├── trs2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-7 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .trs.2 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs.2.py │ │ │ │ │ │ │ ├── .trs.2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs.2.py │ │ │ │ │ │ │ ├── trs.2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .trs.2.py │ │ │ │ │ │ │ ├── .trs.2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── trs.2.py │ │ │ │ │ │ │ ├── trs.2.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-8 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── .trs.2.py │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .trs.2.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ │ └── vis │ │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ │ └── k-9 │ │ │ │ │ ├── probed_files │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ ├── .str1 │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ ├── str1 │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ ├── unrel.txt │ │ │ │ │ │ └── vis │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ ├── .trs2.py │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ ├── trs2.py │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── stderr │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage │ │ │ │ └── templates_dir │ │ │ │ │ ├── template1 │ │ │ │ │ ├── c1.in │ │ │ │ │ ├── in_dir1 │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ ├── f2.in │ │ │ │ │ │ ├── f3.in │ │ │ │ │ │ ├── f4.in │ │ │ │ │ │ ├── f5.in │ │ │ │ │ │ ├── f6.in │ │ │ │ │ │ ├── f7.in │ │ │ │ │ │ └── f8.in │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ ├── template2 │ │ │ │ │ ├── .foo.sh │ │ │ │ │ ├── .hidden │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ ├── .str1.py │ │ │ │ │ ├── .str1.sh │ │ │ │ │ ├── .str1 │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ ├── boo.sh │ │ │ │ │ ├── str1.py │ │ │ │ │ ├── str1.sh │ │ │ │ │ ├── str1 │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ ├── task-template-instantiate.sh │ │ │ │ │ ├── unrel.txt │ │ │ │ │ └── vis │ │ │ │ │ │ ├── .foo.sh │ │ │ │ │ │ ├── .str1.py │ │ │ │ │ │ ├── .str1.sh │ │ │ │ │ │ ├── .unrel.txt │ │ │ │ │ │ ├── boo.sh │ │ │ │ │ │ ├── str1.py │ │ │ │ │ │ ├── str1.sh │ │ │ │ │ │ └── unrel.txt │ │ │ │ │ └── template3 │ │ │ │ │ ├── dir1 │ │ │ │ │ └── str1.txt │ │ │ │ │ └── task-template-instantiate.sh │ │ │ └── test-all.sh │ │ │ ├── run_python │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ └── stderr │ │ │ │ ├── k-2 │ │ │ │ │ └── stderr │ │ │ │ └── k-3 │ │ │ │ │ └── stderr │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage │ │ │ │ ├── python_program_template │ │ │ │ └── templates_dir │ │ │ │ │ └── default │ │ │ │ │ └── task-template-instantiate.sh │ │ │ └── test-all.sh │ │ │ ├── select_file_by_value │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ ├── s.txt │ │ │ │ │ │ │ └── t.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ ├── s.txt │ │ │ │ │ │ │ └── t.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-10 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── s.txt │ │ │ │ │ │ │ └── t.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-11 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-12 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-13 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-14 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-15 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-16 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-17 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ └── o.txt │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-18 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ └── o.txt │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-19 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ └── o.txt │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-2 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ ├── s.txt │ │ │ │ │ │ │ └── t.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-20 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ └── o.txt │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-21 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ └── o.txt │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-22 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ └── o.txt │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-23 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ └── o.txt │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-24 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ └── o.txt │ │ │ │ │ │ │ └── s.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-25 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ ├── 1_templates_dir_dir1 │ │ │ │ │ │ │ └── f1.txt │ │ │ │ │ │ └── 2_templates_dir_dir2 │ │ │ │ │ │ │ └── f2.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-3 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ ├── s.txt │ │ │ │ │ │ │ └── t.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-4 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ ├── s.txt │ │ │ │ │ │ │ └── t.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-5 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ ├── s.txt │ │ │ │ │ │ │ └── t.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-6 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ ├── s.txt │ │ │ │ │ │ │ └── t.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-7 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ │ ├── s.txt │ │ │ │ │ │ │ └── t.txt │ │ │ │ │ └── stderr │ │ │ │ ├── k-8 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ │ ├── dest │ │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ │ └── y.txt │ │ │ │ │ │ │ ├── s.txt │ │ │ │ │ │ │ └── t.txt │ │ │ │ │ └── stderr │ │ │ │ └── k-9 │ │ │ │ │ ├── probed_files │ │ │ │ │ └── 0_output_dir │ │ │ │ │ │ ├── .h.txt │ │ │ │ │ │ ├── .hdir │ │ │ │ │ │ └── p.txt │ │ │ │ │ │ ├── dest │ │ │ │ │ │ └── .hidden │ │ │ │ │ │ ├── s.txt │ │ │ │ │ │ └── t.txt │ │ │ │ │ └── stderr │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage │ │ │ │ └── templates_dir │ │ │ │ │ ├── template1 │ │ │ │ │ ├── .h.txt │ │ │ │ │ ├── .hdir │ │ │ │ │ │ └── p.txt │ │ │ │ │ ├── aa │ │ │ │ │ │ ├── .hh │ │ │ │ │ │ ├── dd │ │ │ │ │ │ │ └── x.txt │ │ │ │ │ │ ├── f1.in │ │ │ │ │ │ ├── ff │ │ │ │ │ │ ├── o.txt │ │ │ │ │ │ └── y.txt │ │ │ │ │ ├── b │ │ │ │ │ │ └── .hidden │ │ │ │ │ ├── s.txt │ │ │ │ │ ├── t.txt │ │ │ │ │ └── task-template-instantiate.sh │ │ │ │ │ └── template2 │ │ │ │ │ ├── dir1 │ │ │ │ │ └── f1.txt │ │ │ │ │ ├── dir2 │ │ │ │ │ └── f2.txt │ │ │ │ │ └── task-template-instantiate.sh │ │ │ └── test-all.sh │ │ │ └── test-all.sh │ ├── no-prob-json │ │ ├── capture-all.sh │ │ ├── captured-data │ │ │ ├── README.md │ │ │ ├── captured-tests.txt │ │ │ ├── cmd-d │ │ │ │ └── stderr │ │ │ ├── cmd-p-d │ │ │ │ └── stderr │ │ │ ├── cmd-p │ │ │ │ └── stderr │ │ │ ├── cmd │ │ │ │ └── stderr │ │ │ ├── no-cmd-d │ │ │ │ └── stdout │ │ │ └── no-cmd │ │ │ │ └── stdout │ │ ├── captured-tests.sh │ │ ├── stage │ │ │ └── a_dir │ │ │ │ └── a_file │ │ └── test-all.sh │ ├── no-scripts │ │ ├── capture-all.sh │ │ ├── captured-data │ │ │ ├── README.md │ │ │ ├── captured-tests.txt │ │ │ └── no-cmd │ │ │ │ └── stdout │ │ ├── captured-tests.sh │ │ ├── stage │ │ │ └── problem.json │ │ └── test-all.sh │ ├── scripts-init-file │ │ ├── capture-all.sh │ │ ├── captured-data │ │ │ ├── README.md │ │ │ ├── captured-tests.txt │ │ │ ├── no-cmd-w │ │ │ │ └── stdout │ │ │ └── no-cmd-wo │ │ │ │ └── stdout │ │ ├── captured-tests.sh │ │ ├── stage-with-init │ │ │ ├── problem.json │ │ │ └── scripts │ │ │ │ ├── internal │ │ │ │ └── tps_init.sh │ │ │ │ └── show.sh │ │ ├── stage-without-init │ │ │ ├── problem.json │ │ │ └── scripts │ │ │ │ ├── internal │ │ │ │ └── a_file │ │ │ │ └── show.sh │ │ └── test-all.sh │ ├── simple │ │ ├── capture-all.sh │ │ ├── captured-data │ │ │ ├── README.md │ │ │ ├── captured-tests.txt │ │ │ ├── cmd-d │ │ │ │ └── stderr │ │ │ ├── cmd-p-d │ │ │ │ └── stderr │ │ │ ├── cmd-p │ │ │ │ └── stderr │ │ │ ├── cmd │ │ │ │ └── stderr │ │ │ ├── no-cmd-d │ │ │ │ └── stdout │ │ │ └── no-cmd │ │ │ │ └── stdout │ │ ├── captured-tests.sh │ │ ├── stage │ │ │ ├── a_dir │ │ │ │ └── a_file │ │ │ ├── a_file │ │ │ ├── problem.json │ │ │ └── scripts │ │ │ │ ├── bash_completion │ │ │ │ └── foo.options │ │ │ │ ├── foo.py │ │ │ │ ├── internal │ │ │ │ └── tps_init.sh │ │ │ │ └── say.sh │ │ └── test-all.sh │ ├── test-all.sh │ └── with-scripts-version │ │ ├── capture-all.sh │ │ ├── captured-data │ │ ├── README.md │ │ ├── captured-tests.txt │ │ └── no-arg │ │ │ └── stdout │ │ ├── captured-tests.sh │ │ ├── stage │ │ ├── problem.json │ │ └── scripts │ │ │ ├── internal │ │ │ ├── tps_init.sh │ │ │ └── version │ │ │ └── say.sh │ │ └── test-all.sh ├── run ├── run.bat ├── scripts │ ├── capture-all.sh │ ├── definition_get_head.sh │ ├── definition_not_web_terminal.sh │ ├── internal │ │ ├── capture-all.sh │ │ ├── test-all.sh │ │ └── util_sh │ │ │ ├── arg_parse │ │ │ ├── capture-all.sh │ │ │ ├── test-all.sh │ │ │ ├── testset1 │ │ │ │ ├── capture-all.sh │ │ │ │ ├── captured-data │ │ │ │ │ ├── README.md │ │ │ │ │ └── captured-tests.txt │ │ │ │ ├── captured-tests.sh │ │ │ │ ├── definitions.sh │ │ │ │ └── test-all.sh │ │ │ └── testset2 │ │ │ │ ├── capture-all.sh │ │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ └── captured-tests.txt │ │ │ │ ├── captured-tests.sh │ │ │ │ ├── definitions.sh │ │ │ │ └── test-all.sh │ │ │ ├── capture-all.sh │ │ │ ├── definition_source_util_sh.sh │ │ │ ├── is_x_format │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ └── captured-tests.txt │ │ │ ├── captured-tests.sh │ │ │ └── test-all.sh │ │ │ ├── output │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ └── captured-tests.txt │ │ │ ├── captured-tests.sh │ │ │ └── test-all.sh │ │ │ ├── recreate_dir │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ └── captured-tests.txt │ │ │ ├── captured-tests.sh │ │ │ ├── stage │ │ │ │ ├── .hdir │ │ │ │ │ └── p.txt │ │ │ │ ├── aa │ │ │ │ │ ├── .h2 │ │ │ │ │ │ └── z.txt │ │ │ │ │ ├── .hh │ │ │ │ │ ├── dd │ │ │ │ │ │ └── x.txt │ │ │ │ │ ├── ff │ │ │ │ │ └── y.txt │ │ │ │ ├── b │ │ │ │ │ └── .hidden │ │ │ │ └── task-template-instantiate.sh │ │ │ └── test-all.sh │ │ │ ├── string_manip │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ └── captured-tests.txt │ │ │ ├── captured-tests.sh │ │ │ └── test-all.sh │ │ │ ├── test-all.sh │ │ │ └── variable_manip │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ ├── README.md │ │ │ ├── captured-tests.txt │ │ │ └── k-27 │ │ │ │ └── probed_variables │ │ │ │ └── 0_my_new_var │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ └── test-all.sh │ ├── subcommands │ │ ├── capture-all.sh │ │ ├── compile_run_crun │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ └── stderr │ │ │ │ ├── k-2 │ │ │ │ │ └── stderr │ │ │ │ ├── k-3 │ │ │ │ │ └── stderr │ │ │ │ ├── k-32 │ │ │ │ │ └── stderr │ │ │ │ ├── k-33 │ │ │ │ │ └── stderr │ │ │ │ ├── k-34 │ │ │ │ │ └── stderr │ │ │ │ ├── k-35 │ │ │ │ │ └── stderr │ │ │ │ ├── k-36 │ │ │ │ │ └── stderr │ │ │ │ └── k-4 │ │ │ │ │ └── stderr │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage-with-grader │ │ │ │ ├── gen │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── data │ │ │ │ │ ├── manual │ │ │ │ │ │ └── small-1.in │ │ │ │ │ └── testlib.h │ │ │ │ ├── grader │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── add1.h │ │ │ │ │ │ └── grader.cpp │ │ │ │ │ ├── java │ │ │ │ │ │ └── grader.java │ │ │ │ │ └── py │ │ │ │ │ │ └── grader.py │ │ │ │ ├── problem.json │ │ │ │ ├── public │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── add1.h │ │ │ │ │ │ └── grader.cpp │ │ │ │ │ ├── files │ │ │ │ │ ├── java │ │ │ │ │ │ └── grader.java │ │ │ │ │ └── py │ │ │ │ │ │ └── grader.py │ │ │ │ ├── solution │ │ │ │ │ ├── correct1.cpp │ │ │ │ │ ├── correct1.java │ │ │ │ │ └── correct1.py │ │ │ │ ├── solutions.json │ │ │ │ ├── subtasks.json │ │ │ │ └── validator │ │ │ │ │ ├── Makefile │ │ │ │ │ └── testlib.h │ │ │ ├── stage-without-grader │ │ │ │ ├── gen │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── data │ │ │ │ │ ├── manual │ │ │ │ │ │ └── small-1.in │ │ │ │ │ └── testlib.h │ │ │ │ ├── problem.json │ │ │ │ ├── solution │ │ │ │ │ ├── compile_error1.cpp │ │ │ │ │ ├── compile_error1.java │ │ │ │ │ ├── compile_error1.py │ │ │ │ │ ├── correct-args1.cpp │ │ │ │ │ ├── correct-args1.java │ │ │ │ │ ├── correct-args1.py │ │ │ │ │ ├── correct1-warn.cpp │ │ │ │ │ ├── correct1-warn.java │ │ │ │ │ ├── correct1-warn.py │ │ │ │ │ ├── correct1.cpp │ │ │ │ │ ├── correct1.java │ │ │ │ │ ├── correct1.py │ │ │ │ │ ├── rte1.cpp │ │ │ │ │ ├── rte1.java │ │ │ │ │ ├── rte1.py │ │ │ │ │ ├── wrong1.cpp │ │ │ │ │ ├── wrong1.java │ │ │ │ │ └── wrong1.py │ │ │ │ ├── solutions.json │ │ │ │ ├── subtasks.json │ │ │ │ └── validator │ │ │ │ │ ├── Makefile │ │ │ │ │ └── testlib.h │ │ │ └── test-all.sh │ │ ├── gen │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ └── stderr │ │ │ │ ├── k-10 │ │ │ │ │ └── stdout │ │ │ │ ├── k-11 │ │ │ │ │ └── stdout │ │ │ │ ├── k-12 │ │ │ │ │ └── stdout │ │ │ │ ├── k-13 │ │ │ │ │ └── stdout │ │ │ │ ├── k-16 │ │ │ │ │ └── stdout │ │ │ │ ├── k-2 │ │ │ │ │ └── stderr │ │ │ │ ├── k-20 │ │ │ │ │ └── stdout │ │ │ │ ├── k-21 │ │ │ │ │ └── stdout │ │ │ │ ├── k-22 │ │ │ │ │ └── stdout │ │ │ │ ├── k-25 │ │ │ │ │ └── stdout │ │ │ │ ├── k-26 │ │ │ │ │ └── stdout │ │ │ │ ├── k-28 │ │ │ │ │ └── stdout │ │ │ │ ├── k-3 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_tests │ │ │ │ │ │ │ ├── 0-01.in │ │ │ │ │ │ │ ├── 0-01.out │ │ │ │ │ │ │ ├── 1-01.in │ │ │ │ │ │ │ ├── 1-01.out │ │ │ │ │ │ │ ├── 1-02.in │ │ │ │ │ │ │ ├── 1-02.out │ │ │ │ │ │ │ ├── 1-03.in │ │ │ │ │ │ │ ├── 1-03.out │ │ │ │ │ │ │ ├── 2-01.in │ │ │ │ │ │ │ ├── 2-01.out │ │ │ │ │ │ │ ├── 2-02.in │ │ │ │ │ │ │ ├── 2-02.out │ │ │ │ │ │ │ ├── gen_summary │ │ │ │ │ │ │ └── mapping │ │ │ │ │ └── stdout │ │ │ │ ├── k-30 │ │ │ │ │ └── stdout │ │ │ │ ├── k-31 │ │ │ │ │ └── stdout │ │ │ │ ├── k-32 │ │ │ │ │ └── stdout │ │ │ │ ├── k-33 │ │ │ │ │ └── stdout │ │ │ │ ├── k-34 │ │ │ │ │ └── stdout │ │ │ │ ├── k-35 │ │ │ │ │ └── stdout │ │ │ │ ├── k-36 │ │ │ │ │ └── stdout │ │ │ │ ├── k-37 │ │ │ │ │ └── stdout │ │ │ │ ├── k-38 │ │ │ │ │ └── stdout │ │ │ │ ├── k-39 │ │ │ │ │ └── stdout │ │ │ │ ├── k-4 │ │ │ │ │ └── stdout │ │ │ │ ├── k-40 │ │ │ │ │ └── stdout │ │ │ │ ├── k-41 │ │ │ │ │ └── stdout │ │ │ │ ├── k-42 │ │ │ │ │ └── stdout │ │ │ │ ├── k-43 │ │ │ │ │ └── stdout │ │ │ │ ├── k-44 │ │ │ │ │ └── stdout │ │ │ │ ├── k-45 │ │ │ │ │ └── stdout │ │ │ │ ├── k-47 │ │ │ │ │ └── stdout │ │ │ │ ├── k-49 │ │ │ │ │ └── stdout │ │ │ │ ├── k-5 │ │ │ │ │ └── stdout │ │ │ │ ├── k-50 │ │ │ │ │ └── stdout │ │ │ │ ├── k-52 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_tests │ │ │ │ │ │ │ ├── 0-01.in │ │ │ │ │ │ │ ├── 1-01.in │ │ │ │ │ │ │ ├── 1-02.in │ │ │ │ │ │ │ ├── 1-03.in │ │ │ │ │ │ │ ├── 2-01.in │ │ │ │ │ │ │ ├── 2-02.in │ │ │ │ │ │ │ ├── gen_summary │ │ │ │ │ │ │ └── mapping │ │ │ │ │ └── stdout │ │ │ │ ├── k-54 │ │ │ │ │ └── stdout │ │ │ │ ├── k-55 │ │ │ │ │ └── stdout │ │ │ │ ├── k-56 │ │ │ │ │ └── stdout │ │ │ │ ├── k-57 │ │ │ │ │ └── stdout │ │ │ │ ├── k-58 │ │ │ │ │ └── stdout │ │ │ │ ├── k-59 │ │ │ │ │ └── stdout │ │ │ │ ├── k-6 │ │ │ │ │ └── stdout │ │ │ │ ├── k-60 │ │ │ │ │ └── stdout │ │ │ │ ├── k-61 │ │ │ │ │ └── stdout │ │ │ │ ├── k-62 │ │ │ │ │ └── stdout │ │ │ │ ├── k-63 │ │ │ │ │ └── stdout │ │ │ │ ├── k-64 │ │ │ │ │ └── stdout │ │ │ │ ├── k-65 │ │ │ │ │ └── stdout │ │ │ │ ├── k-66 │ │ │ │ │ └── stdout │ │ │ │ ├── k-67 │ │ │ │ │ └── stdout │ │ │ │ ├── k-7 │ │ │ │ │ └── stdout │ │ │ │ ├── k-8 │ │ │ │ │ ├── probed_files │ │ │ │ │ │ └── 0_tests │ │ │ │ │ │ │ ├── 0-01.in │ │ │ │ │ │ │ ├── 0-01.out │ │ │ │ │ │ │ ├── 1-01.in │ │ │ │ │ │ │ ├── 1-01.out │ │ │ │ │ │ │ ├── 1-02.in │ │ │ │ │ │ │ ├── 1-02.out │ │ │ │ │ │ │ ├── 1-03.in │ │ │ │ │ │ │ ├── 1-03.out │ │ │ │ │ │ │ ├── 2-01.in │ │ │ │ │ │ │ ├── 2-01.out │ │ │ │ │ │ │ ├── 2-02.in │ │ │ │ │ │ │ ├── 2-02.out │ │ │ │ │ │ │ ├── gen_summary │ │ │ │ │ │ │ └── mapping │ │ │ │ │ └── stdout │ │ │ │ └── k-9 │ │ │ │ │ ├── probed_files │ │ │ │ │ └── 0_tests │ │ │ │ │ │ ├── 0-01.in │ │ │ │ │ │ ├── 1-01.in │ │ │ │ │ │ ├── 1-02.in │ │ │ │ │ │ ├── 1-03.in │ │ │ │ │ │ ├── 2-01.in │ │ │ │ │ │ ├── 2-02.in │ │ │ │ │ │ ├── gen_summary │ │ │ │ │ │ └── mapping │ │ │ │ │ └── stdout │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage1 │ │ │ │ ├── extra │ │ │ │ │ ├── data-bad-arg │ │ │ │ │ ├── data-bad-cmd │ │ │ │ │ ├── data-no-args │ │ │ │ │ ├── data-two-args │ │ │ │ │ ├── gen-ce.cpp │ │ │ │ │ ├── gen-rte.cpp │ │ │ │ │ ├── gen-warn.cpp │ │ │ │ │ ├── sol-ce.cpp │ │ │ │ │ ├── sol-rte.cpp │ │ │ │ │ ├── sol-warn.cpp │ │ │ │ │ ├── validator-ce.cpp │ │ │ │ │ ├── validator-rte.cpp │ │ │ │ │ └── validator-warn.cpp │ │ │ │ ├── gen │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── data │ │ │ │ │ ├── gen1.cpp │ │ │ │ │ ├── manual │ │ │ │ │ │ └── small-1.in │ │ │ │ │ └── testlib.h │ │ │ │ ├── problem.json │ │ │ │ ├── pub │ │ │ │ │ └── example-01.in │ │ │ │ ├── solution │ │ │ │ │ ├── correct1.cpp │ │ │ │ │ ├── correct1.java │ │ │ │ │ └── correct1.py │ │ │ │ ├── solutions.json │ │ │ │ ├── subtasks.json │ │ │ │ └── validator │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── testlib.h │ │ │ │ │ ├── validator-mid.cpp │ │ │ │ │ └── validator.cpp │ │ │ └── test-all.sh │ │ ├── invoke │ │ │ ├── capture-all.sh │ │ │ ├── captured-data │ │ │ │ ├── README.md │ │ │ │ ├── captured-tests.txt │ │ │ │ ├── k-0 │ │ │ │ │ └── stderr │ │ │ │ ├── k-1 │ │ │ │ │ └── stderr │ │ │ │ ├── k-12 │ │ │ │ │ └── stdout │ │ │ │ ├── k-13 │ │ │ │ │ └── stdout │ │ │ │ ├── k-14 │ │ │ │ │ └── stdout │ │ │ │ ├── k-15 │ │ │ │ │ └── stdout │ │ │ │ ├── k-16 │ │ │ │ │ └── stdout │ │ │ │ ├── k-17 │ │ │ │ │ └── stdout │ │ │ │ ├── k-18 │ │ │ │ │ └── stdout │ │ │ │ ├── k-19 │ │ │ │ │ └── stdout │ │ │ │ ├── k-2 │ │ │ │ │ └── stderr │ │ │ │ ├── k-20 │ │ │ │ │ └── stdout │ │ │ │ ├── k-21 │ │ │ │ │ └── stdout │ │ │ │ ├── k-22 │ │ │ │ │ └── stdout │ │ │ │ ├── k-23 │ │ │ │ │ └── stdout │ │ │ │ ├── k-24 │ │ │ │ │ └── stdout │ │ │ │ ├── k-25 │ │ │ │ │ └── stdout │ │ │ │ ├── k-27 │ │ │ │ │ └── stdout │ │ │ │ ├── k-28 │ │ │ │ │ └── stdout │ │ │ │ ├── k-29 │ │ │ │ │ └── stdout │ │ │ │ ├── k-3 │ │ │ │ │ └── stderr │ │ │ │ ├── k-31 │ │ │ │ │ └── stdout │ │ │ │ ├── k-32 │ │ │ │ │ └── stdout │ │ │ │ ├── k-33 │ │ │ │ │ └── stdout │ │ │ │ ├── k-34 │ │ │ │ │ └── stdout │ │ │ │ ├── k-35 │ │ │ │ │ └── stdout │ │ │ │ ├── k-36 │ │ │ │ │ └── stdout │ │ │ │ ├── k-37 │ │ │ │ │ └── stdout │ │ │ │ ├── k-38 │ │ │ │ │ └── stdout │ │ │ │ ├── k-39 │ │ │ │ │ └── stdout │ │ │ │ ├── k-4 │ │ │ │ │ └── stderr │ │ │ │ ├── k-40 │ │ │ │ │ └── stdout │ │ │ │ ├── k-41 │ │ │ │ │ └── stdout │ │ │ │ ├── k-42 │ │ │ │ │ └── stdout │ │ │ │ ├── k-43 │ │ │ │ │ └── stdout │ │ │ │ ├── k-44 │ │ │ │ │ └── stdout │ │ │ │ ├── k-45 │ │ │ │ │ └── stdout │ │ │ │ ├── k-46 │ │ │ │ │ └── stdout │ │ │ │ ├── k-47 │ │ │ │ │ └── stdout │ │ │ │ ├── k-48 │ │ │ │ │ └── stdout │ │ │ │ ├── k-49 │ │ │ │ │ └── stdout │ │ │ │ ├── k-5 │ │ │ │ │ └── stderr │ │ │ │ ├── k-50 │ │ │ │ │ └── stdout │ │ │ │ ├── k-51 │ │ │ │ │ └── stdout │ │ │ │ ├── k-52 │ │ │ │ │ └── stdout │ │ │ │ ├── k-53 │ │ │ │ │ └── stdout │ │ │ │ ├── k-54 │ │ │ │ │ └── stdout │ │ │ │ ├── k-55 │ │ │ │ │ └── stdout │ │ │ │ ├── k-56 │ │ │ │ │ └── stdout │ │ │ │ ├── k-57 │ │ │ │ │ └── stdout │ │ │ │ ├── k-58 │ │ │ │ │ └── stdout │ │ │ │ ├── k-59 │ │ │ │ │ └── stdout │ │ │ │ ├── k-6 │ │ │ │ │ └── stderr │ │ │ │ ├── k-60 │ │ │ │ │ └── stdout │ │ │ │ ├── k-61 │ │ │ │ │ └── stdout │ │ │ │ ├── k-62 │ │ │ │ │ └── stdout │ │ │ │ ├── k-63 │ │ │ │ │ └── stdout │ │ │ │ ├── k-65 │ │ │ │ │ └── stdout │ │ │ │ ├── k-67 │ │ │ │ │ └── stdout │ │ │ │ ├── k-68 │ │ │ │ │ └── stdout │ │ │ │ ├── k-69 │ │ │ │ │ └── stdout │ │ │ │ ├── k-7 │ │ │ │ │ └── stderr │ │ │ │ ├── k-70 │ │ │ │ │ └── stdout │ │ │ │ ├── k-71 │ │ │ │ │ └── stdout │ │ │ │ ├── k-72 │ │ │ │ │ └── stdout │ │ │ │ ├── k-73 │ │ │ │ │ └── stdout │ │ │ │ ├── k-74 │ │ │ │ │ └── stdout │ │ │ │ └── k-8 │ │ │ │ │ └── stderr │ │ │ ├── captured-tests.sh │ │ │ ├── definitions.sh │ │ │ ├── stage-with-checker │ │ │ │ ├── checker │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── checker.cpp │ │ │ │ │ └── testlib.h │ │ │ │ ├── extra │ │ │ │ │ ├── checker-ce.cpp │ │ │ │ │ ├── checker-fail.cpp │ │ │ │ │ ├── checker-rte.cpp │ │ │ │ │ └── checker-warn.cpp │ │ │ │ ├── gen │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── data │ │ │ │ │ ├── gen1.cpp │ │ │ │ │ ├── manual │ │ │ │ │ │ └── small-1.in │ │ │ │ │ └── testlib.h │ │ │ │ ├── problem.json │ │ │ │ ├── pub │ │ │ │ │ └── example-01.in │ │ │ │ ├── solution │ │ │ │ │ ├── compile_error.cpp │ │ │ │ │ ├── correct1-warn.cpp │ │ │ │ │ ├── correct1.cpp │ │ │ │ │ ├── correct1.java │ │ │ │ │ ├── correct1.py │ │ │ │ │ ├── rte1.cpp │ │ │ │ │ ├── rte1.java │ │ │ │ │ ├── rte1.py │ │ │ │ │ ├── slow1.cpp │ │ │ │ │ ├── slow1.java │ │ │ │ │ ├── slow1.py │ │ │ │ │ ├── slow2.cpp │ │ │ │ │ ├── wrong1.cpp │ │ │ │ │ ├── wrong1.java │ │ │ │ │ └── wrong1.py │ │ │ │ ├── solutions.json │ │ │ │ ├── subtasks.json │ │ │ │ ├── tests │ │ │ │ │ ├── 0-01.in │ │ │ │ │ ├── 0-01.out │ │ │ │ │ ├── 1-01.in │ │ │ │ │ ├── 1-01.out │ │ │ │ │ ├── 1-02.in │ │ │ │ │ ├── 1-02.out │ │ │ │ │ ├── 1-03.in │ │ │ │ │ ├── 1-03.out │ │ │ │ │ ├── 2-01.in │ │ │ │ │ ├── 2-01.out │ │ │ │ │ ├── 2-02.in │ │ │ │ │ ├── 2-02.out │ │ │ │ │ ├── gen_summary │ │ │ │ │ └── mapping │ │ │ │ └── validator │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── testlib.h │ │ │ │ │ ├── validator-mid.cpp │ │ │ │ │ └── validator.cpp │ │ │ ├── stage-without-checker │ │ │ │ ├── gen │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── data │ │ │ │ │ ├── gen1.cpp │ │ │ │ │ ├── manual │ │ │ │ │ │ └── small-1.in │ │ │ │ │ └── testlib.h │ │ │ │ ├── problem.json │ │ │ │ ├── pub │ │ │ │ │ └── example-01.in │ │ │ │ ├── solution │ │ │ │ │ ├── compile_error.cpp │ │ │ │ │ ├── correct1-warn.cpp │ │ │ │ │ ├── correct1.cpp │ │ │ │ │ ├── correct1.java │ │ │ │ │ ├── correct1.py │ │ │ │ │ ├── rte1.cpp │ │ │ │ │ ├── rte1.java │ │ │ │ │ ├── rte1.py │ │ │ │ │ ├── slow1.cpp │ │ │ │ │ ├── slow1.java │ │ │ │ │ ├── slow1.py │ │ │ │ │ ├── slow2.cpp │ │ │ │ │ ├── wrong1.cpp │ │ │ │ │ ├── wrong1.java │ │ │ │ │ └── wrong1.py │ │ │ │ ├── solutions.json │ │ │ │ ├── subtasks.json │ │ │ │ ├── tests │ │ │ │ │ ├── 0-01.in │ │ │ │ │ ├── 0-01.out │ │ │ │ │ ├── 1-01.in │ │ │ │ │ ├── 1-01.out │ │ │ │ │ ├── 1-02.in │ │ │ │ │ ├── 1-02.out │ │ │ │ │ ├── 1-03.in │ │ │ │ │ ├── 1-03.out │ │ │ │ │ ├── 2-01.in │ │ │ │ │ ├── 2-01.out │ │ │ │ │ ├── 2-02.in │ │ │ │ │ ├── 2-02.out │ │ │ │ │ ├── gen_summary │ │ │ │ │ └── mapping │ │ │ │ └── validator │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── testlib.h │ │ │ │ │ ├── validator-mid.cpp │ │ │ │ │ └── validator.cpp │ │ │ └── test-all.sh │ │ └── test-all.sh │ └── test-all.sh ├── test-all.sh └── utils │ ├── all.sh │ ├── general.sh │ ├── project-related.sh │ └── testing.sh ├── tps.bash_completion.sh ├── tps.bat ├── tps.sh └── upgrade-scripts.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /LICENSE-3RD-PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/LICENSE-3RD-PARTY.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/README.html -------------------------------------------------------------------------------- /docs/README.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/README.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/IOI-2017.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/assets/IOI-2017.svg -------------------------------------------------------------------------------- /docs/assets/libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/assets/libs.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/assets/w3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/assets/w3.js -------------------------------------------------------------------------------- /docs/task_templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/task_templates.html -------------------------------------------------------------------------------- /docs/task_templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/task_templates.json -------------------------------------------------------------------------------- /docs/task_templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/task_templates.md -------------------------------------------------------------------------------- /docs/technical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/technical.html -------------------------------------------------------------------------------- /docs/technical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/technical.json -------------------------------------------------------------------------------- /docs/technical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/docs/technical.md -------------------------------------------------------------------------------- /extra-assets/Makefile.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/extra-assets/Makefile.sample -------------------------------------------------------------------------------- /extra-assets/problem.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/extra-assets/problem.gitignore -------------------------------------------------------------------------------- /extra-assets/testlib/testing/01.in: -------------------------------------------------------------------------------- 1 | the_input_secret_key 2 | 6 3 | 6 1 5 2 3 1 4 | 5 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/01.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | OK 3 | 3 4 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/cor.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | OK 3 | 3 4 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/dif.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | OK 3 | 2 4 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/emp.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/ext.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | OK 3 | 3 4 | 4 5 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/ext2.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | OK 3 | 3 4 4 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/ginv.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | WTH 3 | 3 4 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/gmis.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/gpve.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | PV 3 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/gpvr.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | PV 3 | Possible tampering with the input 4 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/gsv.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | SV 3 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/gwe.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | WA 3 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/gwr.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | WA 3 | here comes the reason 4 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/mis.out: -------------------------------------------------------------------------------- 1 | the_output_secret_key 2 | OK 3 | -------------------------------------------------------------------------------- /extra-assets/testlib/testing/onosec.out: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /extra-assets/testlib/testlib-cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/extra-assets/testlib/testlib-cms.h -------------------------------------------------------------------------------- /install-tps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/install-tps.bat -------------------------------------------------------------------------------- /install-tps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/install-tps.sh -------------------------------------------------------------------------------- /online-installer/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/online-installer/install.sh -------------------------------------------------------------------------------- /samples/Batch/cup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/.gitignore -------------------------------------------------------------------------------- /samples/Batch/cup/.scripts_version: -------------------------------------------------------------------------------- 1 | v1.6 2 | -------------------------------------------------------------------------------- /samples/Batch/cup/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/LICENSE -------------------------------------------------------------------------------- /samples/Batch/cup/checker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/checker/Makefile -------------------------------------------------------------------------------- /samples/Batch/cup/checker/testlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/checker/testlib.h -------------------------------------------------------------------------------- /samples/Batch/cup/gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/gen/Makefile -------------------------------------------------------------------------------- /samples/Batch/cup/gen/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/gen/data -------------------------------------------------------------------------------- /samples/Batch/cup/gen/gencode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/gen/gencode.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/gen/testlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/gen/testlib.h -------------------------------------------------------------------------------- /samples/Batch/cup/grader/cpp/cup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/grader/cpp/cup.h -------------------------------------------------------------------------------- /samples/Batch/cup/problem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/problem.json -------------------------------------------------------------------------------- /samples/Batch/cup/public/cpp/cup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/public/cpp/cup.h -------------------------------------------------------------------------------- /samples/Batch/cup/public/examples/01.in: -------------------------------------------------------------------------------- 1 | 3 2 | 0 0 3 | -85 69 4 | 96 17 5 | -------------------------------------------------------------------------------- /samples/Batch/cup/scripts/bash_completion/compile.options: -------------------------------------------------------------------------------- 1 | --public 2 | --help 3 | -------------------------------------------------------------------------------- /samples/Batch/cup/scripts/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/scripts/gen.sh -------------------------------------------------------------------------------- /samples/Batch/cup/scripts/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/Batch/cup/scripts/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/scripts/invoke.sh -------------------------------------------------------------------------------- /samples/Batch/cup/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/scripts/run.sh -------------------------------------------------------------------------------- /samples/Batch/cup/scripts/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/Batch/cup/scripts/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/scripts/verify.py -------------------------------------------------------------------------------- /samples/Batch/cup/solution/2log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/2log.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/3log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/3log.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q103.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q103.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q104.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q104.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q105.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q105.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q32.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q33.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q34.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q34.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q36.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q36.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q38.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q38.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q39.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q39.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q40.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q40.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q69.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q69.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q70.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q70.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q71.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q71.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/Q999.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/Q999.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/cup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/cup.java -------------------------------------------------------------------------------- /samples/Batch/cup/solution/cup.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/cup.pas -------------------------------------------------------------------------------- /samples/Batch/cup/solution/cup1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/cup1.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solution/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solution/log.cpp -------------------------------------------------------------------------------- /samples/Batch/cup/solutions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/solutions.json -------------------------------------------------------------------------------- /samples/Batch/cup/subtasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/cup/subtasks.json -------------------------------------------------------------------------------- /samples/Batch/mountains/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/mountains/.gitignore -------------------------------------------------------------------------------- /samples/Batch/mountains/.scripts_version: -------------------------------------------------------------------------------- 1 | v1.6 2 | -------------------------------------------------------------------------------- /samples/Batch/mountains/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/mountains/LICENSE -------------------------------------------------------------------------------- /samples/Batch/mountains/gen/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/mountains/gen/data -------------------------------------------------------------------------------- /samples/Batch/mountains/gen/manual/sample-1.in: -------------------------------------------------------------------------------- 1 | 3f130aac-d629-40d9-b3ad-b75ea9aa8052 2 | 6 3 | 6 1 5 2 3 1 4 | -------------------------------------------------------------------------------- /samples/Batch/mountains/gen/manual/sample-2.in: -------------------------------------------------------------------------------- 1 | 3f130aac-d629-40d9-b3ad-b75ea9aa8052 2 | 3 3 | 0 1 2 4 | -------------------------------------------------------------------------------- /samples/Batch/mountains/public/examples/01.in: -------------------------------------------------------------------------------- 1 | 6 2 | 6 1 5 2 3 1 3 | -------------------------------------------------------------------------------- /samples/Batch/mountains/public/examples/01.out: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /samples/Batch/mountains/public/examples/02.in: -------------------------------------------------------------------------------- 1 | 3 2 | 0 1 2 3 | -------------------------------------------------------------------------------- /samples/Batch/mountains/public/examples/02.out: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /samples/Batch/mountains/scripts/bash_completion/compile.options: -------------------------------------------------------------------------------- 1 | --public 2 | --help 3 | -------------------------------------------------------------------------------- /samples/Batch/mountains/scripts/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/Batch/mountains/scripts/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/Batch/simurgh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/simurgh/.gitignore -------------------------------------------------------------------------------- /samples/Batch/simurgh/.scripts_version: -------------------------------------------------------------------------------- 1 | v1.6 2 | -------------------------------------------------------------------------------- /samples/Batch/simurgh/LICENSE: -------------------------------------------------------------------------------- 1 | IOI 2017, Iran 2 | Contest Day 2 3 | Task: simurgh 4 | -------------------------------------------------------------------------------- /samples/Batch/simurgh/gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/simurgh/gen/Makefile -------------------------------------------------------------------------------- /samples/Batch/simurgh/gen/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/simurgh/gen/data -------------------------------------------------------------------------------- /samples/Batch/simurgh/gen/testlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/simurgh/gen/testlib.h -------------------------------------------------------------------------------- /samples/Batch/simurgh/problem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/simurgh/problem.json -------------------------------------------------------------------------------- /samples/Batch/simurgh/scripts/bash_completion/compile.options: -------------------------------------------------------------------------------- 1 | --public 2 | --help 3 | -------------------------------------------------------------------------------- /samples/Batch/simurgh/scripts/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/Batch/simurgh/scripts/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/Batch/simurgh/secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/simurgh/secret -------------------------------------------------------------------------------- /samples/Batch/simurgh/subtasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/simurgh/subtasks.json -------------------------------------------------------------------------------- /samples/Batch/simurgh/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/simurgh/test.cpp -------------------------------------------------------------------------------- /samples/Batch/wiring/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/wiring/.gitignore -------------------------------------------------------------------------------- /samples/Batch/wiring/.scripts_version: -------------------------------------------------------------------------------- 1 | v1.6 2 | -------------------------------------------------------------------------------- /samples/Batch/wiring/LICENSE: -------------------------------------------------------------------------------- 1 | IOI 2017, Iran 2 | Contest Day 1 3 | Task: wiring 4 | -------------------------------------------------------------------------------- /samples/Batch/wiring/gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/wiring/gen/Makefile -------------------------------------------------------------------------------- /samples/Batch/wiring/gen/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/wiring/gen/data -------------------------------------------------------------------------------- /samples/Batch/wiring/gen/testlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/wiring/gen/testlib.h -------------------------------------------------------------------------------- /samples/Batch/wiring/problem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/wiring/problem.json -------------------------------------------------------------------------------- /samples/Batch/wiring/public/examples/01.in: -------------------------------------------------------------------------------- 1 | 4 5 2 | 1 2 3 7 3 | 0 4 5 9 10 4 | -------------------------------------------------------------------------------- /samples/Batch/wiring/public/examples/01.out: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /samples/Batch/wiring/scripts/bash_completion/compile.options: -------------------------------------------------------------------------------- 1 | --public 2 | --help 3 | -------------------------------------------------------------------------------- /samples/Batch/wiring/scripts/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/wiring/scripts/gen.sh -------------------------------------------------------------------------------- /samples/Batch/wiring/scripts/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/Batch/wiring/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/wiring/scripts/run.sh -------------------------------------------------------------------------------- /samples/Batch/wiring/scripts/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/Batch/wiring/solutions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/wiring/solutions.json -------------------------------------------------------------------------------- /samples/Batch/wiring/subtasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/Batch/wiring/subtasks.json -------------------------------------------------------------------------------- /samples/Communication/prize/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/Communication/prize/.scripts_version: -------------------------------------------------------------------------------- 1 | v1.6 2 | -------------------------------------------------------------------------------- /samples/Communication/prize/LICENSE: -------------------------------------------------------------------------------- 1 | IOI 2017, Iran 2 | Contest Day 2 3 | Task: prize 4 | -------------------------------------------------------------------------------- /samples/Communication/prize/scripts/bash_completion/compile.options: -------------------------------------------------------------------------------- 1 | --public 2 | --help 3 | -------------------------------------------------------------------------------- /samples/Communication/prize/scripts/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/Communication/prize/scripts/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/OutputOnly/nowruz/.scripts_version: -------------------------------------------------------------------------------- 1 | v1.6 2 | -------------------------------------------------------------------------------- /samples/OutputOnly/nowruz/LICENSE: -------------------------------------------------------------------------------- 1 | IOI 2017, Iran 2 | Contest Day 1 3 | Task: nowruz 4 | -------------------------------------------------------------------------------- /samples/OutputOnly/nowruz/gen/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/OutputOnly/nowruz/gen/data -------------------------------------------------------------------------------- /samples/OutputOnly/nowruz/scripts/bash_completion/compile.options: -------------------------------------------------------------------------------- 1 | --public 2 | --help 3 | -------------------------------------------------------------------------------- /samples/OutputOnly/nowruz/scripts/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/OutputOnly/nowruz/scripts/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/OutputOnly/sudoku/.scripts_version: -------------------------------------------------------------------------------- 1 | v1.6 2 | -------------------------------------------------------------------------------- /samples/OutputOnly/sudoku/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/OutputOnly/sudoku/LICENSE -------------------------------------------------------------------------------- /samples/OutputOnly/sudoku/gen/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/OutputOnly/sudoku/gen/data -------------------------------------------------------------------------------- /samples/OutputOnly/sudoku/scripts/bash_completion/compile.options: -------------------------------------------------------------------------------- 1 | --public 2 | --help 3 | -------------------------------------------------------------------------------- /samples/OutputOnly/sudoku/scripts/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/OutputOnly/sudoku/scripts/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/OutputOnly/sudoku/solutions.json: -------------------------------------------------------------------------------- 1 | { 2 | "sudoku.cpp": { 3 | "verdict": "model_solution" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /samples/TwoSteps/coins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/TwoSteps/coins/.gitignore -------------------------------------------------------------------------------- /samples/TwoSteps/coins/.scripts_version: -------------------------------------------------------------------------------- 1 | v1.6 2 | -------------------------------------------------------------------------------- /samples/TwoSteps/coins/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/TwoSteps/coins/LICENSE -------------------------------------------------------------------------------- /samples/TwoSteps/coins/gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/TwoSteps/coins/gen/Makefile -------------------------------------------------------------------------------- /samples/TwoSteps/coins/gen/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/TwoSteps/coins/gen/data -------------------------------------------------------------------------------- /samples/TwoSteps/coins/gen/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/TwoSteps/coins/gen/gen.cpp -------------------------------------------------------------------------------- /samples/TwoSteps/coins/problem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/samples/TwoSteps/coins/problem.json -------------------------------------------------------------------------------- /samples/TwoSteps/coins/scripts/bash_completion/compile.options: -------------------------------------------------------------------------------- 1 | --public 2 | --help 3 | -------------------------------------------------------------------------------- /samples/TwoSteps/coins/scripts/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/TwoSteps/coins/scripts/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/analyze.sh -------------------------------------------------------------------------------- /scripts/bash_completion/crun.options: -------------------------------------------------------------------------------- 1 | --help 2 | --warning-sensitive 3 | --public 4 | -------------------------------------------------------------------------------- /scripts/bash_completion/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/bash_completion/export.sh -------------------------------------------------------------------------------- /scripts/bash_completion/gen.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/bash_completion/gen.options -------------------------------------------------------------------------------- /scripts/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/compile.sh -------------------------------------------------------------------------------- /scripts/crun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/crun.sh -------------------------------------------------------------------------------- /scripts/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/export.sh -------------------------------------------------------------------------------- /scripts/exporters/CMS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/exporters/CMS.py -------------------------------------------------------------------------------- /scripts/exporters/DOMjudge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/exporters/DOMjudge.py -------------------------------------------------------------------------------- /scripts/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/gen.sh -------------------------------------------------------------------------------- /scripts/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/internal/bash_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/bash_completion.py -------------------------------------------------------------------------------- /scripts/internal/color_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/color_util.py -------------------------------------------------------------------------------- /scripts/internal/colored_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/colored_cat.py -------------------------------------------------------------------------------- /scripts/internal/does_test_exist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/does_test_exist.py -------------------------------------------------------------------------------- /scripts/internal/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/gen.py -------------------------------------------------------------------------------- /scripts/internal/gen_data_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/gen_data_parser.py -------------------------------------------------------------------------------- /scripts/internal/gen_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/gen_test.sh -------------------------------------------------------------------------------- /scripts/internal/gen_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/gen_util.sh -------------------------------------------------------------------------------- /scripts/internal/invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/invoke.py -------------------------------------------------------------------------------- /scripts/internal/invoke_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/invoke_test.sh -------------------------------------------------------------------------------- /scripts/internal/invoke_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/invoke_util.sh -------------------------------------------------------------------------------- /scripts/internal/json_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/json_extract.py -------------------------------------------------------------------------------- /scripts/internal/list_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/list_tests.py -------------------------------------------------------------------------------- /scripts/internal/locations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/locations.sh -------------------------------------------------------------------------------- /scripts/internal/pgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/pgg.py -------------------------------------------------------------------------------- /scripts/internal/print_test_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/print_test_name.py -------------------------------------------------------------------------------- /scripts/internal/problem_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/problem_data.sh -------------------------------------------------------------------------------- /scripts/internal/problem_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/problem_util.sh -------------------------------------------------------------------------------- /scripts/internal/run_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/run_util.sh -------------------------------------------------------------------------------- /scripts/internal/stress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/stress.py -------------------------------------------------------------------------------- /scripts/internal/subtask_summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/subtask_summary.sh -------------------------------------------------------------------------------- /scripts/internal/tests_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/tests_util.py -------------------------------------------------------------------------------- /scripts/internal/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/timer.py -------------------------------------------------------------------------------- /scripts/internal/tps_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/tps_init.sh -------------------------------------------------------------------------------- /scripts/internal/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/util.py -------------------------------------------------------------------------------- /scripts/internal/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/util.sh -------------------------------------------------------------------------------- /scripts/internal/verbose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/internal/verbose.py -------------------------------------------------------------------------------- /scripts/internal/version: -------------------------------------------------------------------------------- 1 | 1.25 2 | -------------------------------------------------------------------------------- /scripts/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/invoke.sh -------------------------------------------------------------------------------- /scripts/make-public.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/make-public.sh -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /scripts/stress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/stress.sh -------------------------------------------------------------------------------- /scripts/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/templates/check_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/templates/check_test.sh -------------------------------------------------------------------------------- /scripts/templates/checker_result.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/templates/checker_result.sh -------------------------------------------------------------------------------- /scripts/templates/exec.cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/templates/exec.cpp.sh -------------------------------------------------------------------------------- /scripts/templates/exec.java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/templates/exec.java.sh -------------------------------------------------------------------------------- /scripts/templates/exec.pas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/templates/exec.pas.sh -------------------------------------------------------------------------------- /scripts/templates/exec.py.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/templates/exec.py.sh -------------------------------------------------------------------------------- /scripts/templates/post_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/templates/post_compile.sh -------------------------------------------------------------------------------- /scripts/templates/run.public.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/templates/run.public.sh -------------------------------------------------------------------------------- /scripts/templates/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/templates/run_test.sh -------------------------------------------------------------------------------- /scripts/templates/test_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/templates/test_exists.py -------------------------------------------------------------------------------- /scripts/templates/test_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/templates/test_name.py -------------------------------------------------------------------------------- /scripts/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/scripts/verify.py -------------------------------------------------------------------------------- /task-templates/default/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/task-templates/default/.gitignore -------------------------------------------------------------------------------- /task-templates/default/gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/task-templates/default/gen/Makefile -------------------------------------------------------------------------------- /task-templates/default/gen/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/task-templates/default/gen/data -------------------------------------------------------------------------------- /task-templates/default/gen/gen1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/task-templates/default/gen/gen1.cpp -------------------------------------------------------------------------------- /task-templates/default/gen/input.header: -------------------------------------------------------------------------------- 1 | __TPARAM_INPUT_SECRET__ 2 | -------------------------------------------------------------------------------- /task-templates/default/gen/manual/small-1.in: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /task-templates/default/grader/cpp/__TPARAM_SHORT_NAME__.h: -------------------------------------------------------------------------------- 1 | 2 | int __TPARAM_GRADER_FUNCTION_NAME__(int n); 3 | -------------------------------------------------------------------------------- /task-templates/default/problem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/task-templates/default/problem.json -------------------------------------------------------------------------------- /task-templates/default/public/examples/01.in: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /task-templates/default/public/examples/01.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /task-templates/default/scripts/bash_completion/crun.options: -------------------------------------------------------------------------------- 1 | --help 2 | --warning-sensitive 3 | --public 4 | -------------------------------------------------------------------------------- /task-templates/default/scripts/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /task-templates/default/scripts/internal/version: -------------------------------------------------------------------------------- 1 | 1.25 2 | -------------------------------------------------------------------------------- /task-templates/default/scripts/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /task-templates/default/statement/tex/samples/1.in: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /task-templates/default/statement/tex/samples/1.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | sandbox 2 | -------------------------------------------------------------------------------- /tests/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/README.html -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/assets/IOI-2017.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/assets/IOI-2017.svg -------------------------------------------------------------------------------- /tests/assets/libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/assets/libs.js -------------------------------------------------------------------------------- /tests/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/assets/style.css -------------------------------------------------------------------------------- /tests/assets/w3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/assets/w3.js -------------------------------------------------------------------------------- /tests/capture-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/capture-all.sh -------------------------------------------------------------------------------- /tests/command/bc-forward/stage/a_dir/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/bc-forward/stage/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/bc-forward/stage/problem.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /tests/command/bc-forward/stage/scripts/bar.sh: -------------------------------------------------------------------------------- 1 | 2 | echo "$@" 3 | -------------------------------------------------------------------------------- /tests/command/bc-forward/stage/scripts/foo.py: -------------------------------------------------------------------------------- 1 | 2 | import sys 3 | 4 | print(" ".join(sys.argv[1:])) 5 | -------------------------------------------------------------------------------- /tests/command/bc-forward/stage/scripts/internal/tps_init.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/command/capture-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/command/capture-all.sh -------------------------------------------------------------------------------- /tests/command/empty-scripts/stage/problem.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /tests/command/empty-scripts/stage/scripts/internal/tps_init.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/command/init/args/stage/another_dir/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/init/args/stage/another_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/init/args/stage/templates1/default/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/init/args/stage/templates1/file_x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/init/args/stage/templates1/tpl1/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/init/args/stage/templates2/default: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/init/args/stage/templates2/tpl2/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/init/args/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/command/init/args/test-all.sh -------------------------------------------------------------------------------- /tests/command/init/bash_completion/stage/templates1/default/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/init/bash_completion/stage/templates1/tpl1/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/init/bash_completion/stage/templates2/tpl2/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/init/capture-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/command/init/capture-all.sh -------------------------------------------------------------------------------- /tests/command/init/definitions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/command/init/definitions.sh -------------------------------------------------------------------------------- /tests/command/init/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/command/init/test-all.sh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/clone_template/captured-data/k-0/probed_files/0_a_new_dir/a_file: -------------------------------------------------------------------------------- 1 | Some content 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/clone_template/captured-data/k-0/probed_files/0_a_new_dir/result.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/clone_template/captured-data/k-1/probed_files/0_a_new_dir/a_file: -------------------------------------------------------------------------------- 1 | Some content 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/clone_template/captured-data/k-1/probed_files/0_a_new_dir/result.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/clone_template/captured-data/k-3/probed_files/0_a_new_dir/result.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/clone_template/captured-data/k-4/probed_files/0_a_new_dir/result.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/clone_template/captured-data/k-6/probed_files/0_a_new_dir/result.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/clone_template/captured-data/k-7/probed_files/0_a_new_dir/result.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/clone_template/stage/templates_dir/default/.hidden_file: -------------------------------------------------------------------------------- 1 | Some hidden content 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/clone_template/stage/templates_dir/default/a_file: -------------------------------------------------------------------------------- 1 | Some content 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/clone_template/stage/templates_dir/single/one_file: -------------------------------------------------------------------------------- 1 | Some simple content 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-0/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-0/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-0/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-0/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-0/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-0/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-0/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-0/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-1/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-1/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-1/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-1/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-1/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-1/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-1/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-1/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-10/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-10/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-10/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-10/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-10/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-10/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-10/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-10/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-11/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-11/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-11/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-11/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-11/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-11/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-11/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-11/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-12/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-12/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-12/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-12/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-12/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-12/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-12/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-12/probed_files/0_output_dir/b/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-13/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-13/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-13/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-13/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-13/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-13/probed_files/0_output_dir/aa/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-13/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-13/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-14/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-14/probed_files/0_output_dir/aa/dd/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-14/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-14/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-14/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-14/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-14/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-14/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-15/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-15/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-15/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-15/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-15/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-15/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-15/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-16/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-16/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-16/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-16/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-16/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-16/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-16/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-17/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-17/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-17/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-17/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-17/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-17/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-17/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-18/probed_files/0_output_dir/.hdir/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-18/probed_files/0_output_dir/.hdir/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-18/probed_files/0_output_dir/.hdir/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-18/probed_files/0_output_dir/.hdir/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-18/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-18/probed_files/0_output_dir/.hdir/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-18/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-19/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-19/probed_files/0_output_dir/b/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-19/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-19/probed_files/0_output_dir/b/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-19/probed_files/0_output_dir/b/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-19/probed_files/0_output_dir/b/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-19/probed_files/0_output_dir/b/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-19/probed_files/0_output_dir/b/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-2/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-2/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-2/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-2/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-2/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-2/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-2/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-2/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-20/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-20/probed_files/0_output_dir/.hdir/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-20/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-20/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-20/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-20/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-20/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-20/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-21/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-21/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-21/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-21/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-21/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-21/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-21/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-21/probed_files/0_output_dir/b/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-22/probed_files/0_output_dir/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-22/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-22/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-22/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-22/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-22/probed_files/0_output_dir/aa/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-22/probed_files/0_output_dir/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-22/probed_files/0_output_dir/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-23/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-23/probed_files/0_output_dir/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-23/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-23/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-23/probed_files/0_output_dir/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-24/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-24/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-24/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-25/probed_files/0_output_dir/dest/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-25/probed_files/0_output_dir/dest/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-25/probed_files/0_output_dir/dest/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-26/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-26/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-26/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-3/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-3/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-3/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-4/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-4/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-4/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-5/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-5/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-5/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-6/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-6/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-6/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-7/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-7/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-7/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-8/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-8/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-8/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-9/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-9/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/captured-data/k-9/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/stage/templates_dir/template1/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/stage/templates_dir/template1/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/stage/templates_dir/template1/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/stage/templates_dir/template1/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/stage/templates_dir/template1/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/stage/templates_dir/template1/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/stage/templates_dir/template1/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/stage/templates_dir/template1/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/move_dir_contents/stage/templates_dir/template2/dir1/f1.txt: -------------------------------------------------------------------------------- 1 | This is a file. 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-0/f1.in: -------------------------------------------------------------------------------- 1 | bye 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-0/f2.in: -------------------------------------------------------------------------------- 1 | byeb 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-0/f3.in: -------------------------------------------------------------------------------- 1 | abye 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-0/f4.in: -------------------------------------------------------------------------------- 1 | abyeb 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-0/f5.in: -------------------------------------------------------------------------------- 1 | bye$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-0/f6.in: -------------------------------------------------------------------------------- 1 | ^bye 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-0/f7.in: -------------------------------------------------------------------------------- 1 | ^bye$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-0/f8.in: -------------------------------------------------------------------------------- 1 | bye\$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-1/f1.in: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-1/f2.in: -------------------------------------------------------------------------------- 1 | hib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-1/f3.in: -------------------------------------------------------------------------------- 1 | ahi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-1/f4.in: -------------------------------------------------------------------------------- 1 | ahib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-1/f5.in: -------------------------------------------------------------------------------- 1 | bye 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-1/f6.in: -------------------------------------------------------------------------------- 1 | ^hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-1/f7.in: -------------------------------------------------------------------------------- 1 | ^bye 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-1/f8.in: -------------------------------------------------------------------------------- 1 | hi\$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-2/f1.in: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-2/f2.in: -------------------------------------------------------------------------------- 1 | hib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-2/f3.in: -------------------------------------------------------------------------------- 1 | ahi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-2/f4.in: -------------------------------------------------------------------------------- 1 | ahib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-2/f5.in: -------------------------------------------------------------------------------- 1 | hi$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-2/f6.in: -------------------------------------------------------------------------------- 1 | bye 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-2/f7.in: -------------------------------------------------------------------------------- 1 | bye$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-2/f8.in: -------------------------------------------------------------------------------- 1 | hi\$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-3/f1.in: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-3/f2.in: -------------------------------------------------------------------------------- 1 | hib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-3/f3.in: -------------------------------------------------------------------------------- 1 | ahi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-3/f4.in: -------------------------------------------------------------------------------- 1 | ahib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-3/f5.in: -------------------------------------------------------------------------------- 1 | hi$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-3/f6.in: -------------------------------------------------------------------------------- 1 | ^hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-3/f7.in: -------------------------------------------------------------------------------- 1 | bye 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-3/f8.in: -------------------------------------------------------------------------------- 1 | hi\$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-4/f1.in: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-4/f2.in: -------------------------------------------------------------------------------- 1 | hib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-4/f3.in: -------------------------------------------------------------------------------- 1 | ahi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-4/f4.in: -------------------------------------------------------------------------------- 1 | ahib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-4/f5.in: -------------------------------------------------------------------------------- 1 | hi$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-4/f6.in: -------------------------------------------------------------------------------- 1 | ^hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-4/f7.in: -------------------------------------------------------------------------------- 1 | ^hi$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/d-4/f8.in: -------------------------------------------------------------------------------- 1 | bye 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/in_dir1/f1.in: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/in_dir1/f2.in: -------------------------------------------------------------------------------- 1 | hib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/in_dir1/f3.in: -------------------------------------------------------------------------------- 1 | ahi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/in_dir1/f4.in: -------------------------------------------------------------------------------- 1 | ahib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/in_dir1/f5.in: -------------------------------------------------------------------------------- 1 | hi$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/in_dir1/f6.in: -------------------------------------------------------------------------------- 1 | ^hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/in_dir1/f7.in: -------------------------------------------------------------------------------- 1 | ^hi$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-0/probed_files/0_output_dir/in_dir1/f8.in: -------------------------------------------------------------------------------- 1 | hi\$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-1/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-1/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-1/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-1/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-1/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-1/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-1/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-1/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-1/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-1/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-10/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-10/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-10/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-10/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-10/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-10/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-10/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-10/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-10/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-10/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-11/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-11/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-11/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-11/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-11/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-11/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-11/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-11/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-11/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-11/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-12/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-12/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-12/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-12/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-12/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-12/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-12/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-12/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-12/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-12/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-13/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-13/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-13/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-13/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-13/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-13/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-13/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-13/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-13/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-13/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-14/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-14/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-14/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-14/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-14/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-14/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-14/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-14/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-14/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-14/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-15/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-15/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-15/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-15/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-15/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-15/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-15/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-15/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-15/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-15/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-16/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-16/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-16/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-16/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-16/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-16/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-16/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-16/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-16/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-16/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-17/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-17/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-17/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-17/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-17/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-17/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-17/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-17/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-17/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-17/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-18/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-18/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-18/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-18/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-18/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-18/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-18/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-18/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-18/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-18/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-19/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-19/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-19/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-19/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-19/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-19/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-19/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-19/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-19/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-19/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-2/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-2/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-2/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-2/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-2/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-2/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-2/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-2/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-2/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-2/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-20/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-20/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-20/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-20/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-20/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-20/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-20/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-20/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-20/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-20/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-21/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-21/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-21/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-21/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-21/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-21/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-21/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-21/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-21/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-21/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-22/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-22/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-22/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-22/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-22/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-22/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-22/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-22/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-22/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-22/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-23/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-23/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-23/probed_files/0_output_dir/.trs2/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-23/probed_files/0_output_dir/.trs2/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-23/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-23/probed_files/0_output_dir/trs2/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-23/probed_files/0_output_dir/trs2/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-23/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-23/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-23/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-24/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-24/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-24/probed_files/0_output_dir/.trs.2/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-24/probed_files/0_output_dir/.trs.2/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-24/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-24/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-24/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-24/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-24/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-24/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-25/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-25/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-25/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-25/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-25/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-25/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-25/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-25/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-25/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-25/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-26/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-26/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-26/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-26/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-26/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-26/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-26/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-26/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-26/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-26/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-3/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-3/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-3/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-3/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-3/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-3/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-3/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-3/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-3/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-3/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-4/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-4/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-4/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-4/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-4/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-4/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-4/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-4/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-4/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-4/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-5/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-5/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-5/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-5/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-5/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-5/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-5/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-5/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-5/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-5/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-6/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-6/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-6/probed_files/0_output_dir/.trs2/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-6/probed_files/0_output_dir/.trs2/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-6/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-6/probed_files/0_output_dir/trs2/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-6/probed_files/0_output_dir/trs2/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-6/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-6/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-6/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-7/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-7/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-7/probed_files/0_output_dir/.trs.2/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-7/probed_files/0_output_dir/.trs.2/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-7/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-7/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-7/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-7/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-7/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-7/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-8/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-8/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-8/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-8/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-8/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-8/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-8/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-8/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-8/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-8/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-9/probed_files/0_output_dir/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-9/probed_files/0_output_dir/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-9/probed_files/0_output_dir/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-9/probed_files/0_output_dir/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-9/probed_files/0_output_dir/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-9/probed_files/0_output_dir/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-9/probed_files/0_output_dir/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-9/probed_files/0_output_dir/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-9/probed_files/0_output_dir/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/captured-data/k-9/probed_files/0_output_dir/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template1/in_dir1/f1.in: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template1/in_dir1/f2.in: -------------------------------------------------------------------------------- 1 | hib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template1/in_dir1/f3.in: -------------------------------------------------------------------------------- 1 | ahi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template1/in_dir1/f4.in: -------------------------------------------------------------------------------- 1 | ahib 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template1/in_dir1/f5.in: -------------------------------------------------------------------------------- 1 | hi$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template1/in_dir1/f6.in: -------------------------------------------------------------------------------- 1 | ^hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template1/in_dir1/f7.in: -------------------------------------------------------------------------------- 1 | ^hi$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template1/in_dir1/f8.in: -------------------------------------------------------------------------------- 1 | hi\$ 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template2/.hidden/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template2/.hidden/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template2/.str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template2/.str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template2/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template2/str1/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template2/str1/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template2/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template2/vis/.unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/replace/stage/templates_dir/template2/vis/unrel.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-0/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-0/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-0/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-1/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-1/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-1/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-11/probed_files/0_output_dir/dest/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-18/probed_files/0_output_dir/aa/dest: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-19/probed_files/0_output_dir/aa/dest: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-2/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-2/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-2/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-3/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-3/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-3/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-4/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-4/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-4/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-5/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-5/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-5/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-6/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-6/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-6/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-7/probed_files/0_output_dir/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-7/probed_files/0_output_dir/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-7/probed_files/0_output_dir/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-8/probed_files/0_output_dir/dest/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/captured-data/k-8/probed_files/0_output_dir/dest/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/stage/templates_dir/template1/.h.txt: -------------------------------------------------------------------------------- 1 | .h.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/stage/templates_dir/template1/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/stage/templates_dir/template1/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/stage/templates_dir/template1/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/stage/templates_dir/template1/aa/f1.in: -------------------------------------------------------------------------------- 1 | f1.in -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/stage/templates_dir/template1/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/stage/templates_dir/template1/aa/o.txt: -------------------------------------------------------------------------------- 1 | o.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/stage/templates_dir/template1/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/stage/templates_dir/template1/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/stage/templates_dir/template1/s.txt: -------------------------------------------------------------------------------- 1 | s.txt 2 | -------------------------------------------------------------------------------- /tests/command/init/ttis_functions/select_file_by_value/stage/templates_dir/template1/t.txt: -------------------------------------------------------------------------------- 1 | t.txt 2 | -------------------------------------------------------------------------------- /tests/command/no-prob-json/stage/a_dir/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/no-scripts/stage/problem.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /tests/command/scripts-init-file/stage-with-init/problem.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /tests/command/scripts-init-file/stage-without-init/problem.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /tests/command/scripts-init-file/stage-without-init/scripts/internal/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/simple/stage/a_dir/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/simple/stage/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/command/simple/stage/problem.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /tests/command/simple/stage/scripts/bash_completion/foo.options: -------------------------------------------------------------------------------- 1 | --hello 2 | --type= 3 | -------------------------------------------------------------------------------- /tests/command/simple/stage/scripts/foo.py: -------------------------------------------------------------------------------- 1 | 2 | import sys 3 | 4 | print(" ".join(sys.argv[1:])) 5 | -------------------------------------------------------------------------------- /tests/command/simple/stage/scripts/internal/tps_init.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/command/simple/stage/scripts/say.sh: -------------------------------------------------------------------------------- 1 | 2 | echo "$@" 3 | -------------------------------------------------------------------------------- /tests/command/simple/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/command/simple/test-all.sh -------------------------------------------------------------------------------- /tests/command/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/command/test-all.sh -------------------------------------------------------------------------------- /tests/command/with-scripts-version/captured-data/captured-tests.txt: -------------------------------------------------------------------------------- 1 | no-arg 2 | -------------------------------------------------------------------------------- /tests/command/with-scripts-version/stage/problem.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /tests/command/with-scripts-version/stage/scripts/internal/tps_init.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/command/with-scripts-version/stage/scripts/internal/version: -------------------------------------------------------------------------------- 1 | 1.2 2 | -------------------------------------------------------------------------------- /tests/command/with-scripts-version/stage/scripts/say.sh: -------------------------------------------------------------------------------- 1 | 2 | echo "$@" 3 | -------------------------------------------------------------------------------- /tests/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/run -------------------------------------------------------------------------------- /tests/run.bat: -------------------------------------------------------------------------------- 1 | @bash "%~dp0\run" %* 2 | -------------------------------------------------------------------------------- /tests/scripts/capture-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/scripts/capture-all.sh -------------------------------------------------------------------------------- /tests/scripts/definition_not_web_terminal.sh: -------------------------------------------------------------------------------- 1 | 2 | export WEB_TERMINAL="false" 3 | -------------------------------------------------------------------------------- /tests/scripts/internal/util_sh/recreate_dir/stage/.hdir/p.txt: -------------------------------------------------------------------------------- 1 | p.txt 2 | -------------------------------------------------------------------------------- /tests/scripts/internal/util_sh/recreate_dir/stage/aa/.h2/z.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/scripts/internal/util_sh/recreate_dir/stage/aa/.hh: -------------------------------------------------------------------------------- 1 | .hh -------------------------------------------------------------------------------- /tests/scripts/internal/util_sh/recreate_dir/stage/aa/dd/x.txt: -------------------------------------------------------------------------------- 1 | bb/x.txt -------------------------------------------------------------------------------- /tests/scripts/internal/util_sh/recreate_dir/stage/aa/ff: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/scripts/internal/util_sh/recreate_dir/stage/aa/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /tests/scripts/internal/util_sh/recreate_dir/stage/b/.hidden: -------------------------------------------------------------------------------- 1 | .hidden 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/compile_run_crun/stage-with-grader/gen/manual/small-1.in: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/compile_run_crun/stage-without-grader/gen/manual/small-1.in: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/0-01.in: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/0-01.out: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/1-01.in: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/1-01.out: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/1-02.in: -------------------------------------------------------------------------------- 1 | 20 301 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/1-02.out: -------------------------------------------------------------------------------- 1 | 321 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/1-03.in: -------------------------------------------------------------------------------- 1 | 547 812 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/1-03.out: -------------------------------------------------------------------------------- 1 | 1359 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/2-01.in: -------------------------------------------------------------------------------- 1 | 1002 799 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/2-01.out: -------------------------------------------------------------------------------- 1 | 1801 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/2-02.in: -------------------------------------------------------------------------------- 1 | 10010 32464 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-3/probed_files/0_tests/2-02.out: -------------------------------------------------------------------------------- 1 | 42474 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-52/probed_files/0_tests/0-01.in: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-52/probed_files/0_tests/1-01.in: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-52/probed_files/0_tests/1-02.in: -------------------------------------------------------------------------------- 1 | 20 301 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-52/probed_files/0_tests/1-03.in: -------------------------------------------------------------------------------- 1 | 547 812 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-52/probed_files/0_tests/2-01.in: -------------------------------------------------------------------------------- 1 | 1002 799 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-52/probed_files/0_tests/2-02.in: -------------------------------------------------------------------------------- 1 | 10010 32464 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/0-01.in: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/0-01.out: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/1-01.in: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/1-01.out: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/1-02.in: -------------------------------------------------------------------------------- 1 | 20 301 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/1-02.out: -------------------------------------------------------------------------------- 1 | 321 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/1-03.in: -------------------------------------------------------------------------------- 1 | 547 812 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/1-03.out: -------------------------------------------------------------------------------- 1 | 1359 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/2-01.in: -------------------------------------------------------------------------------- 1 | 1002 799 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/2-01.out: -------------------------------------------------------------------------------- 1 | 1801 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/2-02.in: -------------------------------------------------------------------------------- 1 | 10010 32464 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-8/probed_files/0_tests/2-02.out: -------------------------------------------------------------------------------- 1 | 42474 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-9/probed_files/0_tests/0-01.in: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-9/probed_files/0_tests/1-01.in: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-9/probed_files/0_tests/1-02.in: -------------------------------------------------------------------------------- 1 | 20 301 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-9/probed_files/0_tests/1-03.in: -------------------------------------------------------------------------------- 1 | 547 812 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-9/probed_files/0_tests/2-01.in: -------------------------------------------------------------------------------- 1 | 1002 799 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/captured-data/k-9/probed_files/0_tests/2-02.in: -------------------------------------------------------------------------------- 1 | 10010 32464 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/stage1/extra/gen-ce.cpp: -------------------------------------------------------------------------------- 1 | get a bad compile error 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/stage1/extra/sol-ce.cpp: -------------------------------------------------------------------------------- 1 | get a bad compile error 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/stage1/extra/validator-ce.cpp: -------------------------------------------------------------------------------- 1 | get a bad compile error 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/stage1/gen/manual/small-1.in: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/gen/stage1/pub/example-01.in: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/extra/checker-ce.cpp: -------------------------------------------------------------------------------- 1 | get a bad compile error 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/gen/manual/small-1.in: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/pub/example-01.in: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/solution/compile_error.cpp: -------------------------------------------------------------------------------- 1 | get a bad compile error 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/0-01.in: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/0-01.out: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/1-01.in: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/1-01.out: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/1-02.in: -------------------------------------------------------------------------------- 1 | 20 301 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/1-02.out: -------------------------------------------------------------------------------- 1 | 321 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/1-03.in: -------------------------------------------------------------------------------- 1 | 547 812 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/1-03.out: -------------------------------------------------------------------------------- 1 | 1359 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/2-01.in: -------------------------------------------------------------------------------- 1 | 1002 799 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/2-01.out: -------------------------------------------------------------------------------- 1 | 1801 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/2-02.in: -------------------------------------------------------------------------------- 1 | 10010 32464 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-with-checker/tests/2-02.out: -------------------------------------------------------------------------------- 1 | 42474 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/gen/manual/small-1.in: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/pub/example-01.in: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/solution/compile_error.cpp: -------------------------------------------------------------------------------- 1 | get a bad compile error 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/0-01.in: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/0-01.out: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/1-01.in: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/1-01.out: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/1-02.in: -------------------------------------------------------------------------------- 1 | 20 301 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/1-02.out: -------------------------------------------------------------------------------- 1 | 321 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/1-03.in: -------------------------------------------------------------------------------- 1 | 547 812 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/1-03.out: -------------------------------------------------------------------------------- 1 | 1359 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/2-01.in: -------------------------------------------------------------------------------- 1 | 1002 799 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/2-01.out: -------------------------------------------------------------------------------- 1 | 1801 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/2-02.in: -------------------------------------------------------------------------------- 1 | 10010 32464 2 | -------------------------------------------------------------------------------- /tests/scripts/subcommands/invoke/stage-without-checker/tests/2-02.out: -------------------------------------------------------------------------------- 1 | 42474 2 | -------------------------------------------------------------------------------- /tests/scripts/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/scripts/test-all.sh -------------------------------------------------------------------------------- /tests/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/test-all.sh -------------------------------------------------------------------------------- /tests/utils/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/utils/all.sh -------------------------------------------------------------------------------- /tests/utils/general.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/utils/general.sh -------------------------------------------------------------------------------- /tests/utils/project-related.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/utils/project-related.sh -------------------------------------------------------------------------------- /tests/utils/testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tests/utils/testing.sh -------------------------------------------------------------------------------- /tps.bash_completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tps.bash_completion.sh -------------------------------------------------------------------------------- /tps.bat: -------------------------------------------------------------------------------- 1 | @bash tps.sh %* 2 | -------------------------------------------------------------------------------- /tps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/tps.sh -------------------------------------------------------------------------------- /upgrade-scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioi-2017/tps/HEAD/upgrade-scripts.sh --------------------------------------------------------------------------------