From 7a7673e628002e5dcd4a76ac4f9dc99c462d991b Mon Sep 17 00:00:00 2001 From: j8takagi Date: Mon, 13 Dec 2010 08:57:41 +0900 Subject: [PATCH] =?utf8?q?sample=E3=81=8B=E3=82=89hoc1=E3=82=92=E5=89=8A?= =?utf8?q?=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- sample/hoc1/.gitignore | 2 - sample/hoc1/Makefile | 14 ------ sample/hoc1/hoc.y | 82 -------------------------------- sample/hoc1/test/.gitignore | 4 -- sample/hoc1/test/Define.mk | 1 - sample/hoc1/test/Define_group.mk | 1 - sample/hoc1/test/Define_test.mk | 1 - sample/hoc1/test/Makefile | 1 - sample/hoc1/test/Test.mk | 1 - sample/hoc1/test/add/0.txt | 14 ------ sample/hoc1/test/add/Makefile | 3 -- sample/hoc1/test/add/cmd | 1 - sample/hoc1/test/add/desc.txt | 1 - sample/hoc1/test/add/in.txt | 7 --- sample/hoc1/test/bignum/0.txt | 3 -- sample/hoc1/test/bignum/Makefile | 3 -- sample/hoc1/test/bignum/cmd | 1 - sample/hoc1/test/bignum/desc.txt | 1 - sample/hoc1/test/bignum/in.txt | 2 - sample/hoc1/test/div/0.txt | 20 -------- sample/hoc1/test/div/Makefile | 3 -- sample/hoc1/test/div/cmd | 1 - sample/hoc1/test/div/desc.txt | 1 - sample/hoc1/test/div/in.txt | 10 ---- sample/hoc1/test/div_1/0.txt | 20 -------- sample/hoc1/test/div_1/Makefile | 3 -- sample/hoc1/test/div_1/cmd | 1 - sample/hoc1/test/div_1/desc.txt | 2 - sample/hoc1/test/div_1/in.txt | 10 ---- sample/hoc1/test/minnum/0.txt | 2 - sample/hoc1/test/minnum/Makefile | 3 -- sample/hoc1/test/minnum/cmd | 1 - sample/hoc1/test/minnum/desc.txt | 1 - sample/hoc1/test/minnum/in.txt | 1 - sample/hoc1/test/mix/0.txt | 8 ---- sample/hoc1/test/mix/Makefile | 3 -- sample/hoc1/test/mix/cmd | 1 - sample/hoc1/test/mix/desc.txt | 1 - sample/hoc1/test/mix/in.txt | 4 -- sample/hoc1/test/mul/0.txt | 19 -------- sample/hoc1/test/mul/Makefile | 3 -- sample/hoc1/test/mul/cmd | 1 - sample/hoc1/test/mul/desc.txt | 1 - sample/hoc1/test/mul/in.txt | 10 ---- sample/hoc1/test/pi/0.txt | 23 --------- sample/hoc1/test/pi/Makefile | 3 -- sample/hoc1/test/pi/cmd | 1 - sample/hoc1/test/pi/desc.txt | 1 - sample/hoc1/test/pi/in.txt | 12 ----- sample/hoc1/test/sub/0.txt | 16 ------- sample/hoc1/test/sub/Makefile | 3 -- sample/hoc1/test/sub/cmd | 1 - sample/hoc1/test/sub/desc.txt | 1 - sample/hoc1/test/sub/in.txt | 8 ---- 54 files changed, 342 deletions(-) delete mode 100644 sample/hoc1/.gitignore delete mode 100644 sample/hoc1/Makefile delete mode 100644 sample/hoc1/hoc.y delete mode 100644 sample/hoc1/test/.gitignore delete mode 120000 sample/hoc1/test/Define.mk delete mode 120000 sample/hoc1/test/Define_group.mk delete mode 120000 sample/hoc1/test/Define_test.mk delete mode 120000 sample/hoc1/test/Makefile delete mode 120000 sample/hoc1/test/Test.mk delete mode 100644 sample/hoc1/test/add/0.txt delete mode 100644 sample/hoc1/test/add/Makefile delete mode 100755 sample/hoc1/test/add/cmd delete mode 100644 sample/hoc1/test/add/desc.txt delete mode 100644 sample/hoc1/test/add/in.txt delete mode 100644 sample/hoc1/test/bignum/0.txt delete mode 100644 sample/hoc1/test/bignum/Makefile delete mode 100755 sample/hoc1/test/bignum/cmd delete mode 100644 sample/hoc1/test/bignum/desc.txt delete mode 100644 sample/hoc1/test/bignum/in.txt delete mode 100644 sample/hoc1/test/div/0.txt delete mode 100644 sample/hoc1/test/div/Makefile delete mode 100755 sample/hoc1/test/div/cmd delete mode 100644 sample/hoc1/test/div/desc.txt delete mode 100644 sample/hoc1/test/div/in.txt delete mode 100644 sample/hoc1/test/div_1/0.txt delete mode 100644 sample/hoc1/test/div_1/Makefile delete mode 100755 sample/hoc1/test/div_1/cmd delete mode 100644 sample/hoc1/test/div_1/desc.txt delete mode 100644 sample/hoc1/test/div_1/in.txt delete mode 100644 sample/hoc1/test/minnum/0.txt delete mode 100644 sample/hoc1/test/minnum/Makefile delete mode 100755 sample/hoc1/test/minnum/cmd delete mode 100644 sample/hoc1/test/minnum/desc.txt delete mode 100644 sample/hoc1/test/minnum/in.txt delete mode 100644 sample/hoc1/test/mix/0.txt delete mode 100644 sample/hoc1/test/mix/Makefile delete mode 100755 sample/hoc1/test/mix/cmd delete mode 100644 sample/hoc1/test/mix/desc.txt delete mode 100644 sample/hoc1/test/mix/in.txt delete mode 100644 sample/hoc1/test/mul/0.txt delete mode 100644 sample/hoc1/test/mul/Makefile delete mode 100755 sample/hoc1/test/mul/cmd delete mode 100644 sample/hoc1/test/mul/desc.txt delete mode 100644 sample/hoc1/test/mul/in.txt delete mode 100644 sample/hoc1/test/pi/0.txt delete mode 100644 sample/hoc1/test/pi/Makefile delete mode 100755 sample/hoc1/test/pi/cmd delete mode 100644 sample/hoc1/test/pi/desc.txt delete mode 100644 sample/hoc1/test/pi/in.txt delete mode 100644 sample/hoc1/test/sub/0.txt delete mode 100644 sample/hoc1/test/sub/Makefile delete mode 100755 sample/hoc1/test/sub/cmd delete mode 100644 sample/hoc1/test/sub/desc.txt delete mode 100644 sample/hoc1/test/sub/in.txt diff --git a/sample/hoc1/.gitignore b/sample/hoc1/.gitignore deleted file mode 100644 index 60b455e..0000000 --- a/sample/hoc1/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.o -hoc1 diff --git a/sample/hoc1/Makefile b/sample/hoc1/Makefile deleted file mode 100644 index 626773a..0000000 --- a/sample/hoc1/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -CC = gcc - -CFLAGS = -g -lm - -.INTERMEDIATE: hoc.o - -hoc1: hoc.o - $(CC) $(CFLAGS) -o $@ $^ - -clean: - rm -f hoc1 *.o - -check: - $(MAKE) -sC test diff --git a/sample/hoc1/hoc.y b/sample/hoc1/hoc.y deleted file mode 100644 index efabe25..0000000 --- a/sample/hoc1/hoc.y +++ /dev/null @@ -1,82 +0,0 @@ -%{ -#define YYSTYPE double /* data type of yacc stack */ -#include -#include -#include -%} - -%token NUMBER EOL -%left '+' '-' /* left associative, same precedence */ -%left '*' '/' '%' /* left associative, higher precedence */ -%left UNARYMINUS UNARYPLUS -%right '^' -%% -list: /* nothing */ - | list EOL - | list expr EOL { printdouble($2); } -; -expr: NUMBER { $$ = $1; } - | expr '+' expr { $$ = $1 + $3; } - | expr '-' expr { $$ = $1 - $3; } - | expr '*' expr { $$ = $1 * $3; } - | expr '/' expr { $$ = $1 / $3; } - | expr '%' expr { $$ = (int)$1 % (int)$3; } - | expr '^' expr { $$ = pow($1, $3); } - | '(' expr ')'{ $$ = $2; } - | '-' expr %prec UNARYMINUS { $$ = -$2; } - | '+' expr %prec UNARYPLUS { $$ = $2; } -; -%% /* end of grammer */ - -char *progname; /* for error messages */ -int lineno = 1; - -int main(int argc, char *argv[]) { - progname = argv[0]; - yyparse(); -} - -int printdouble(double f) { - if((f > 0 && f < 1e-15) || (f < 0 && f > -1e-15)) { - printf("\t%.20e\n", f); - } else { - printf("\t%.20f\n", f); - } -} - -int yylex(){ - int c; - while((c = getchar()) == ' ' || c == '\t') { - ; - } - if(c == EOF) { - return 0; - } - /* number */ - if(c == '.' || isdigit(c)) { - ungetc(c, stdin); - scanf("%lf", &yylval); - return NUMBER; - } - if(c == '\n' || c == ';') { - if(c == '\n') { - lineno++; - } - return EOL; - } - return c; -} - -/* called for yacc syntax error */ -int yyerror(char *s) { - warning(s, (char *)0); -} - -/* print warning message */ -int warning(char *s, char *t) { - fprintf(stderr, "%s: %s", progname, s); - if(t) { - fprintf(stderr, " %s", t); - } - fprintf(stderr, " near line %d\n", lineno); -} diff --git a/sample/hoc1/test/.gitignore b/sample/hoc1/test/.gitignore deleted file mode 100644 index fbf3ca7..0000000 --- a/sample/hoc1/test/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -1.txt -*.log -diff.txt -err.txt diff --git a/sample/hoc1/test/Define.mk b/sample/hoc1/test/Define.mk deleted file mode 120000 index 23af1e7..0000000 --- a/sample/hoc1/test/Define.mk +++ /dev/null @@ -1 +0,0 @@ -/home/kazubito/2010_11/autotest.mk/template/Define.mk \ No newline at end of file diff --git a/sample/hoc1/test/Define_group.mk b/sample/hoc1/test/Define_group.mk deleted file mode 120000 index 7c7f726..0000000 --- a/sample/hoc1/test/Define_group.mk +++ /dev/null @@ -1 +0,0 @@ -/home/kazubito/2010_11/autotest.mk/template/Define_group.mk \ No newline at end of file diff --git a/sample/hoc1/test/Define_test.mk b/sample/hoc1/test/Define_test.mk deleted file mode 120000 index 3608db5..0000000 --- a/sample/hoc1/test/Define_test.mk +++ /dev/null @@ -1 +0,0 @@ -/home/kazubito/2010_11/autotest.mk/template/Define_test.mk \ No newline at end of file diff --git a/sample/hoc1/test/Makefile b/sample/hoc1/test/Makefile deleted file mode 120000 index 96aa0a7..0000000 --- a/sample/hoc1/test/Makefile +++ /dev/null @@ -1 +0,0 @@ -/home/kazubito/2010_11/autotest.mk/template/Group.mk \ No newline at end of file diff --git a/sample/hoc1/test/Test.mk b/sample/hoc1/test/Test.mk deleted file mode 120000 index 0b8d2f2..0000000 --- a/sample/hoc1/test/Test.mk +++ /dev/null @@ -1 +0,0 @@ -/home/kazubito/2010_11/autotest.mk/template/Test.mk \ No newline at end of file diff --git a/sample/hoc1/test/add/0.txt b/sample/hoc1/test/add/0.txt deleted file mode 100644 index 827f5c3..0000000 --- a/sample/hoc1/test/add/0.txt +++ /dev/null @@ -1,14 +0,0 @@ -1+2 -1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 -1.23 + 5.43 -1125899906842623 + .1 -1125899906842624 + .1 -1.23e100 + 5.43e100 -+1 - 3.00000000000000000000 - 55.00000000000000000000 - 6.66000000000000014211 - 1125899906842623.12500000000000000000 - 1125899906842624.00000000000000000000 - 66599999999999998844490010772679401071096411257064020483599845015161551995588590762666824971868700672.00000000000000000000 - 1.00000000000000000000 diff --git a/sample/hoc1/test/add/Makefile b/sample/hoc1/test/add/Makefile deleted file mode 100644 index e38b63c..0000000 --- a/sample/hoc1/test/add/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -include ../Define.mk -include ../Define_test.mk -include ../Test.mk diff --git a/sample/hoc1/test/add/cmd b/sample/hoc1/test/add/cmd deleted file mode 100755 index ea36034..0000000 --- a/sample/hoc1/test/add/cmd +++ /dev/null @@ -1 +0,0 @@ -cat in.txt && ../../hoc1 < in.txt diff --git a/sample/hoc1/test/add/desc.txt b/sample/hoc1/test/add/desc.txt deleted file mode 100644 index b4dc198..0000000 --- a/sample/hoc1/test/add/desc.txt +++ /dev/null @@ -1 +0,0 @@ -hoc1 - add 足し算のテスト diff --git a/sample/hoc1/test/add/in.txt b/sample/hoc1/test/add/in.txt deleted file mode 100644 index 5a9357e..0000000 --- a/sample/hoc1/test/add/in.txt +++ /dev/null @@ -1,7 +0,0 @@ -1+2 -1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 -1.23 + 5.43 -1125899906842623 + .1 -1125899906842624 + .1 -1.23e100 + 5.43e100 -+1 diff --git a/sample/hoc1/test/bignum/0.txt b/sample/hoc1/test/bignum/0.txt deleted file mode 100644 index 158b1a5..0000000 --- a/sample/hoc1/test/bignum/0.txt +++ /dev/null @@ -1,3 +0,0 @@ -9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 + 1 - - 9999999999999999860310597602564577717002641838126363875249660735883565852672743849064846414228960666786379280392654615393353172850252103336275952370615397010730691664689375178569039851073146339641623266071126720011020169553304018596457812688561947201171488461172921822139066929851282122002676667750021070848.00000000000000000000 diff --git a/sample/hoc1/test/bignum/Makefile b/sample/hoc1/test/bignum/Makefile deleted file mode 100644 index e38b63c..0000000 --- a/sample/hoc1/test/bignum/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -include ../Define.mk -include ../Define_test.mk -include ../Test.mk diff --git a/sample/hoc1/test/bignum/cmd b/sample/hoc1/test/bignum/cmd deleted file mode 100755 index ea36034..0000000 --- a/sample/hoc1/test/bignum/cmd +++ /dev/null @@ -1 +0,0 @@ -cat in.txt && ../../hoc1 < in.txt diff --git a/sample/hoc1/test/bignum/desc.txt b/sample/hoc1/test/bignum/desc.txt deleted file mode 100644 index 0e98dba..0000000 --- a/sample/hoc1/test/bignum/desc.txt +++ /dev/null @@ -1 +0,0 @@ -hoc1 - bignum 巨大な数 diff --git a/sample/hoc1/test/bignum/in.txt b/sample/hoc1/test/bignum/in.txt deleted file mode 100644 index 6547670..0000000 --- a/sample/hoc1/test/bignum/in.txt +++ /dev/null @@ -1,2 +0,0 @@ -9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 + 1 - diff --git a/sample/hoc1/test/div/0.txt b/sample/hoc1/test/div/0.txt deleted file mode 100644 index 65af4ca..0000000 --- a/sample/hoc1/test/div/0.txt +++ /dev/null @@ -1,20 +0,0 @@ -4 / 2 -4 / 3 -4 / 1 -4 / 0 -1 / 10 -10 / 7 -30 / 7 -10 / 0.1 -1.23e2 / .01 -/1 - 2.00000000000000000000 - 1.33333333333333325932 - 4.00000000000000000000 - inf - 0.10000000000000000555 - 1.42857142857142860315 - 4.28571428571428558740 - 100.00000000000000000000 - 12300.00000000000000000000 -../../hoc1: syntax error near line 10 diff --git a/sample/hoc1/test/div/Makefile b/sample/hoc1/test/div/Makefile deleted file mode 100644 index e38b63c..0000000 --- a/sample/hoc1/test/div/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -include ../Define.mk -include ../Define_test.mk -include ../Test.mk diff --git a/sample/hoc1/test/div/cmd b/sample/hoc1/test/div/cmd deleted file mode 100755 index ea36034..0000000 --- a/sample/hoc1/test/div/cmd +++ /dev/null @@ -1 +0,0 @@ -cat in.txt && ../../hoc1 < in.txt diff --git a/sample/hoc1/test/div/desc.txt b/sample/hoc1/test/div/desc.txt deleted file mode 100644 index 5a879b7..0000000 --- a/sample/hoc1/test/div/desc.txt +++ /dev/null @@ -1 +0,0 @@ -hoc1 - div 割り算のテスト diff --git a/sample/hoc1/test/div/in.txt b/sample/hoc1/test/div/in.txt deleted file mode 100644 index 8c2fbc3..0000000 --- a/sample/hoc1/test/div/in.txt +++ /dev/null @@ -1,10 +0,0 @@ -4 / 2 -4 / 3 -4 / 1 -4 / 0 -1 / 10 -10 / 7 -30 / 7 -10 / 0.1 -1.23e2 / .01 -/1 diff --git a/sample/hoc1/test/div_1/0.txt b/sample/hoc1/test/div_1/0.txt deleted file mode 100644 index e77e62c..0000000 --- a/sample/hoc1/test/div_1/0.txt +++ /dev/null @@ -1,20 +0,0 @@ -4 / 2 -4 / 3 -4 / 1 -4 / 0 -1 / 10 -10 / 7 -30 / 7 -10 / 0.1 -1.23e2 / .01 -/1 - 2.00000000000000000000 - 1.33333333333333325932 - 4.00000000000000000000 - inf - 0.10000000000000000555 - 1.42857142857142860315 - 4.28571428571428558740 - 100.00000000000000000000 - 123.00000000000000000000 -../../hoc1: syntax error near line 10 diff --git a/sample/hoc1/test/div_1/Makefile b/sample/hoc1/test/div_1/Makefile deleted file mode 100644 index e38b63c..0000000 --- a/sample/hoc1/test/div_1/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -include ../Define.mk -include ../Define_test.mk -include ../Test.mk diff --git a/sample/hoc1/test/div_1/cmd b/sample/hoc1/test/div_1/cmd deleted file mode 100755 index ea36034..0000000 --- a/sample/hoc1/test/div_1/cmd +++ /dev/null @@ -1 +0,0 @@ -cat in.txt && ../../hoc1 < in.txt diff --git a/sample/hoc1/test/div_1/desc.txt b/sample/hoc1/test/div_1/desc.txt deleted file mode 100644 index 56793a0..0000000 --- a/sample/hoc1/test/div_1/desc.txt +++ /dev/null @@ -1,2 +0,0 @@ -hoc1 - div_1 割り算のテスト -テストの想定に誤りがあるため、正常動作時、テストは失敗する diff --git a/sample/hoc1/test/div_1/in.txt b/sample/hoc1/test/div_1/in.txt deleted file mode 100644 index 8c2fbc3..0000000 --- a/sample/hoc1/test/div_1/in.txt +++ /dev/null @@ -1,10 +0,0 @@ -4 / 2 -4 / 3 -4 / 1 -4 / 0 -1 / 10 -10 / 7 -30 / 7 -10 / 0.1 -1.23e2 / .01 -/1 diff --git a/sample/hoc1/test/minnum/0.txt b/sample/hoc1/test/minnum/0.txt deleted file mode 100644 index 8dc761e..0000000 --- a/sample/hoc1/test/minnum/0.txt +++ /dev/null @@ -1,2 +0,0 @@ -1.23e-100 + 5.43e-100 - 6.66000000000000021436e-100 diff --git a/sample/hoc1/test/minnum/Makefile b/sample/hoc1/test/minnum/Makefile deleted file mode 100644 index e38b63c..0000000 --- a/sample/hoc1/test/minnum/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -include ../Define.mk -include ../Define_test.mk -include ../Test.mk diff --git a/sample/hoc1/test/minnum/cmd b/sample/hoc1/test/minnum/cmd deleted file mode 100755 index ea36034..0000000 --- a/sample/hoc1/test/minnum/cmd +++ /dev/null @@ -1 +0,0 @@ -cat in.txt && ../../hoc1 < in.txt diff --git a/sample/hoc1/test/minnum/desc.txt b/sample/hoc1/test/minnum/desc.txt deleted file mode 100644 index ec0f8c3..0000000 --- a/sample/hoc1/test/minnum/desc.txt +++ /dev/null @@ -1 +0,0 @@ -hoc1 - minnum ごく小さい数 diff --git a/sample/hoc1/test/minnum/in.txt b/sample/hoc1/test/minnum/in.txt deleted file mode 100644 index 2c30a3a..0000000 --- a/sample/hoc1/test/minnum/in.txt +++ /dev/null @@ -1 +0,0 @@ -1.23e-100 + 5.43e-100 diff --git a/sample/hoc1/test/mix/0.txt b/sample/hoc1/test/mix/0.txt deleted file mode 100644 index c80d918..0000000 --- a/sample/hoc1/test/mix/0.txt +++ /dev/null @@ -1,8 +0,0 @@ -(1 + 2) * (3 + 4) -1 + 2 * 3 + 4 -(1 + 2) / (3 + 4) -1 + 2 / 3 + 4 - 21.00000000000000000000 - 11.00000000000000000000 - 0.42857142857142854764 - 5.66666666666666607455 diff --git a/sample/hoc1/test/mix/Makefile b/sample/hoc1/test/mix/Makefile deleted file mode 100644 index e38b63c..0000000 --- a/sample/hoc1/test/mix/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -include ../Define.mk -include ../Define_test.mk -include ../Test.mk diff --git a/sample/hoc1/test/mix/cmd b/sample/hoc1/test/mix/cmd deleted file mode 100755 index ea36034..0000000 --- a/sample/hoc1/test/mix/cmd +++ /dev/null @@ -1 +0,0 @@ -cat in.txt && ../../hoc1 < in.txt diff --git a/sample/hoc1/test/mix/desc.txt b/sample/hoc1/test/mix/desc.txt deleted file mode 100644 index 753937f..0000000 --- a/sample/hoc1/test/mix/desc.txt +++ /dev/null @@ -1 +0,0 @@ -hoc1 - 四則混合のテスト diff --git a/sample/hoc1/test/mix/in.txt b/sample/hoc1/test/mix/in.txt deleted file mode 100644 index d1351c0..0000000 --- a/sample/hoc1/test/mix/in.txt +++ /dev/null @@ -1,4 +0,0 @@ -(1 + 2) * (3 + 4) -1 + 2 * 3 + 4 -(1 + 2) / (3 + 4) -1 + 2 / 3 + 4 diff --git a/sample/hoc1/test/mul/0.txt b/sample/hoc1/test/mul/0.txt deleted file mode 100644 index 0f14e27..0000000 --- a/sample/hoc1/test/mul/0.txt +++ /dev/null @@ -1,19 +0,0 @@ -2 * 3 -3 * 2 -2 * 1 -2 * 0 -1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 -1.23456789 * 0.123456789 -1000000 * .1 -1.23e3 * 6.02e23 -*1 -2 * 5 - 6.00000000000000000000 - 6.00000000000000000000 - 2.00000000000000000000 - 0.00000000000000000000 - 3628800.00000000000000000000 - 0.15241578750190518110 - 100000.00000000000000000000 - 740460000000000062620958720.00000000000000000000 -../../hoc1: syntax error near line 9 diff --git a/sample/hoc1/test/mul/Makefile b/sample/hoc1/test/mul/Makefile deleted file mode 100644 index e38b63c..0000000 --- a/sample/hoc1/test/mul/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -include ../Define.mk -include ../Define_test.mk -include ../Test.mk diff --git a/sample/hoc1/test/mul/cmd b/sample/hoc1/test/mul/cmd deleted file mode 100755 index ea36034..0000000 --- a/sample/hoc1/test/mul/cmd +++ /dev/null @@ -1 +0,0 @@ -cat in.txt && ../../hoc1 < in.txt diff --git a/sample/hoc1/test/mul/desc.txt b/sample/hoc1/test/mul/desc.txt deleted file mode 100644 index 687b39b..0000000 --- a/sample/hoc1/test/mul/desc.txt +++ /dev/null @@ -1 +0,0 @@ -hoc1 - mul 掛け算のテスト diff --git a/sample/hoc1/test/mul/in.txt b/sample/hoc1/test/mul/in.txt deleted file mode 100644 index dfbdaf5..0000000 --- a/sample/hoc1/test/mul/in.txt +++ /dev/null @@ -1,10 +0,0 @@ -2 * 3 -3 * 2 -2 * 1 -2 * 0 -1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 -1.23456789 * 0.123456789 -1000000 * .1 -1.23e3 * 6.02e23 -*1 -2 * 5 diff --git a/sample/hoc1/test/pi/0.txt b/sample/hoc1/test/pi/0.txt deleted file mode 100644 index cb9979b..0000000 --- a/sample/hoc1/test/pi/0.txt +++ /dev/null @@ -1,23 +0,0 @@ -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 ) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 - 1/95) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 - 1/95 + 1/97) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 - 1/95 + 1/97 - 1/99) -4 * (1/1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 - 1/95 + 1/97 - 1/99 + 1/101 - 1/103 + 1/105 - 1/107 + 1/109 - 1/111 + 1/113 - 1/115 + 1/117 - 1/119 + 1/121 - 1/123 + 1/125 - 1/127 + 1/129 - 1/131 + 1/133 - 1/135 + 1/137 - 1/139 + 1/141 - 1/143 + 1/145 - 1/147 + 1/149 - 1/151 + 1/153 - 1/155 + 1/157 - 1/159 + 1/161 - 1/163 + 1/165 - 1/167 + 1/169 - 1/171 + 1/173 - 1/175 + 1/177 - 1/179 + 1/181 - 1/183 + 1/185 - 1/187 + 1/189 - 1/191 + 1/193 - 1/195 + 1/197 - 1/199 + 1/201 - 1/203 + 1/205 - 1/207 + 1/209 - 1/211 + 1/213 - 1/215 + 1/217 - 1/219 + 1/221 - 1/223 + 1/225 - 1/227 + 1/229 - 1/231 + 1/233 - 1/235 + 1/237 - 1/239 + 1/241 - 1/243 + 1/245 - 1/247 + 1/249 - 1/251 + 1/253 - 1/255 + 1/257 - 1/259 + 1/261 - 1/263 + 1/265 - 1/267 + 1/269 - 1/271 + 1/273 - 1/275 + 1/277 - 1/279 + 1/281 - 1/283 + 1/285 - 1/287 + 1/289 - 1/291 + 1/293 - 1/295 + 1/297 - 1/299 + 1/301 - 1/303 + 1/305 - 1/307 + 1/309 - 1/311 + 1/313 - 1/315 + 1/317 - 1/319 + 1/321 - 1/323 + 1/325 - 1/327 + 1/329 - 1/331 + 1/333 - 1/335 + 1/337 - 1/339 + 1/341 - 1/343 + 1/345 - 1/347 + 1/349 - 1/351 + 1/353 - 1/355 + 1/357 - 1/359 + 1/361 - 1/363 + 1/365 - 1/367 + 1/369 - 1/371 + 1/373 - 1/375 + 1/377 - 1/379 + 1/381 - 1/383 + 1/385 - 1/387 + 1/389 - 1/391 + 1/393 - 1/395 + 1/397 - 1/399 + 1/401 - 1/403 + 1/405 - 1/407 + 1/409 - 1/411 + 1/413 - 1/415 + 1/417 - 1/419 + 1/421 - 1/423 + 1/425 - 1/427 + 1/429 - 1/431 + 1/433 - 1/435 + 1/437 - 1/439 + 1/441 - 1/443 + 1/445 - 1/447 + 1/449 - 1/451 + 1/453 - 1/455 + 1/457 - 1/459 + 1/461 - 1/463 + 1/465 - 1/467 + 1/469 - 1/471 + 1/473 - 1/475 + 1/477 - 1/479 + 1/481 - 1/483 + 1/485 - 1/487 + 1/489 - 1/491 + 1/493 - 1/495 + 1/497 - 1/499 + 1/501 - 1/503 + 1/505 - 1/507 + 1/509 - 1/511 + 1/513 - 1/515 + 1/517 - 1/519 + 1/521 - 1/523 + 1/525 - 1/527 + 1/529 - 1/531 + 1/533 - 1/535 + 1/537 - 1/539 + 1/541 - 1/543 + 1/545 - 1/547 + 1/549 - 1/551 + 1/553 - 1/555 + 1/557 - 1/559 + 1/561 - 1/563 + 1/565 - 1/567 + 1/569 - 1/571 + 1/573 - 1/575 + 1/577 - 1/579 + 1/581 - 1/583 + 1/585 - 1/587 + 1/589 - 1/591 + 1/593 - 1/595 + 1/597 - 1/599 + 1/601 - 1/603 + 1/605 - 1/607 + 1/609 - 1/611 + 1/613 - 1/615 + 1/617 - 1/619 + 1/621 - 1/623 + 1/625 - 1/627 + 1/629 - 1/631 + 1/633 - 1/635 + 1/637 - 1/639 + 1/641 - 1/643 + 1/645 - 1/647 + 1/649 - 1/651 + 1/653 - 1/655 + 1/657 - 1/659 + 1/661 - 1/663 + 1/665 - 1/667 + 1/669 - 1/671 + 1/673 - 1/675 + 1/677 - 1/679 + 1/681 - 1/683 + 1/685 - 1/687 + 1/689 - 1/691 + 1/693 - 1/695 + 1/697 - 1/699 + 1/701 - 1/703 + 1/705 - 1/707 + 1/709 - 1/711 + 1/713 - 1/715 + 1/717 - 1/719 + 1/721 - 1/723 + 1/725 - 1/727 + 1/729 - 1/731 + 1/733 - 1/735 + 1/737 - 1/739 + 1/741 - 1/743 + 1/745 - 1/747 + 1/749 - 1/751 + 1/753 - 1/755 + 1/757 - 1/759 + 1/761 - 1/763 + 1/765 - 1/767 + 1/769 - 1/771 + 1/773 - 1/775 + 1/777 - 1/779 + 1/781 - 1/783 + 1/785 - 1/787 + 1/789 - 1/791 + 1/793 - 1/795 + 1/797 - 1/799 + 1/801 - 1/803 + 1/805 - 1/807 + 1/809 - 1/811 + 1/813 - 1/815 + 1/817 - 1/819 + 1/821 - 1/823 + 1/825 - 1/827 + 1/829 - 1/831 + 1/833 - 1/835 + 1/837 - 1/839 + 1/841 - 1/843 + 1/845 - 1/847 + 1/849 - 1/851 + 1/853 - 1/855 + 1/857 - 1/859 + 1/861 - 1/863 + 1/865 - 1/867 + 1/869 - 1/871 + 1/873 - 1/875 + 1/877 - 1/879 + 1/881 - 1/883 + 1/885 - 1/887 + 1/889 - 1/891 + 1/893 - 1/895 + 1/897 - 1/899 + 1/901 - 1/903 + 1/905 - 1/907 + 1/909 - 1/911 + 1/913 - 1/915 + 1/917 - 1/919 + 1/921 - 1/923 + 1/925 - 1/927 + 1/929 - 1/931 + 1/933 - 1/935 + 1/937 - 1/939 + 1/941 - 1/943 + 1/945 - 1/947 + 1/949 - 1/951 + 1/953 - 1/955 + 1/957 - 1/959 + 1/961 - 1/963 + 1/965 - 1/967 + 1/969 - 1/971 + 1/973 - 1/975 + 1/977 - 1/979 + 1/981 - 1/983 + 1/985 - 1/987 + 1/989 - 1/991 + 1/993 - 1/995 + 1/997 - 1/999) -4 * (1/1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 - 1/95 + 1/97 - 1/99 + 1/101 - 1/103 + 1/105 - 1/107 + 1/109 - 1/111 + 1/113 - 1/115 + 1/117 - 1/119 + 1/121 - 1/123 + 1/125 - 1/127 + 1/129 - 1/131 + 1/133 - 1/135 + 1/137 - 1/139 + 1/141 - 1/143 + 1/145 - 1/147 + 1/149 - 1/151 + 1/153 - 1/155 + 1/157 - 1/159 + 1/161 - 1/163 + 1/165 - 1/167 + 1/169 - 1/171 + 1/173 - 1/175 + 1/177 - 1/179 + 1/181 - 1/183 + 1/185 - 1/187 + 1/189 - 1/191 + 1/193 - 1/195 + 1/197 - 1/199 + 1/201 - 1/203 + 1/205 - 1/207 + 1/209 - 1/211 + 1/213 - 1/215 + 1/217 - 1/219 + 1/221 - 1/223 + 1/225 - 1/227 + 1/229 - 1/231 + 1/233 - 1/235 + 1/237 - 1/239 + 1/241 - 1/243 + 1/245 - 1/247 + 1/249 - 1/251 + 1/253 - 1/255 + 1/257 - 1/259 + 1/261 - 1/263 + 1/265 - 1/267 + 1/269 - 1/271 + 1/273 - 1/275 + 1/277 - 1/279 + 1/281 - 1/283 + 1/285 - 1/287 + 1/289 - 1/291 + 1/293 - 1/295 + 1/297 - 1/299 + 1/301 - 1/303 + 1/305 - 1/307 + 1/309 - 1/311 + 1/313 - 1/315 + 1/317 - 1/319 + 1/321 - 1/323 + 1/325 - 1/327 + 1/329 - 1/331 + 1/333 - 1/335 + 1/337 - 1/339 + 1/341 - 1/343 + 1/345 - 1/347 + 1/349 - 1/351 + 1/353 - 1/355 + 1/357 - 1/359 + 1/361 - 1/363 + 1/365 - 1/367 + 1/369 - 1/371 + 1/373 - 1/375 + 1/377 - 1/379 + 1/381 - 1/383 + 1/385 - 1/387 + 1/389 - 1/391 + 1/393 - 1/395 + 1/397 - 1/399 + 1/401 - 1/403 + 1/405 - 1/407 + 1/409 - 1/411 + 1/413 - 1/415 + 1/417 - 1/419 + 1/421 - 1/423 + 1/425 - 1/427 + 1/429 - 1/431 + 1/433 - 1/435 + 1/437 - 1/439 + 1/441 - 1/443 + 1/445 - 1/447 + 1/449 - 1/451 + 1/453 - 1/455 + 1/457 - 1/459 + 1/461 - 1/463 + 1/465 - 1/467 + 1/469 - 1/471 + 1/473 - 1/475 + 1/477 - 1/479 + 1/481 - 1/483 + 1/485 - 1/487 + 1/489 - 1/491 + 1/493 - 1/495 + 1/497 - 1/499 + 1/501 - 1/503 + 1/505 - 1/507 + 1/509 - 1/511 + 1/513 - 1/515 + 1/517 - 1/519 + 1/521 - 1/523 + 1/525 - 1/527 + 1/529 - 1/531 + 1/533 - 1/535 + 1/537 - 1/539 + 1/541 - 1/543 + 1/545 - 1/547 + 1/549 - 1/551 + 1/553 - 1/555 + 1/557 - 1/559 + 1/561 - 1/563 + 1/565 - 1/567 + 1/569 - 1/571 + 1/573 - 1/575 + 1/577 - 1/579 + 1/581 - 1/583 + 1/585 - 1/587 + 1/589 - 1/591 + 1/593 - 1/595 + 1/597 - 1/599 + 1/601 - 1/603 + 1/605 - 1/607 + 1/609 - 1/611 + 1/613 - 1/615 + 1/617 - 1/619 + 1/621 - 1/623 + 1/625 - 1/627 + 1/629 - 1/631 + 1/633 - 1/635 + 1/637 - 1/639 + 1/641 - 1/643 + 1/645 - 1/647 + 1/649 - 1/651 + 1/653 - 1/655 + 1/657 - 1/659 + 1/661 - 1/663 + 1/665 - 1/667 + 1/669 - 1/671 + 1/673 - 1/675 + 1/677 - 1/679 + 1/681 - 1/683 + 1/685 - 1/687 + 1/689 - 1/691 + 1/693 - 1/695 + 1/697 - 1/699 + 1/701 - 1/703 + 1/705 - 1/707 + 1/709 - 1/711 + 1/713 - 1/715 + 1/717 - 1/719 + 1/721 - 1/723 + 1/725 - 1/727 + 1/729 - 1/731 + 1/733 - 1/735 + 1/737 - 1/739 + 1/741 - 1/743 + 1/745 - 1/747 + 1/749 - 1/751 + 1/753 - 1/755 + 1/757 - 1/759 + 1/761 - 1/763 + 1/765 - 1/767 + 1/769 - 1/771 + 1/773 - 1/775 + 1/777 - 1/779 + 1/781 - 1/783 + 1/785 - 1/787 + 1/789 - 1/791 + 1/793 - 1/795 + 1/797 - 1/799 + 1/801 - 1/803 + 1/805 - 1/807 + 1/809 - 1/811 + 1/813 - 1/815 + 1/817 - 1/819 + 1/821 - 1/823 + 1/825 - 1/827 + 1/829 - 1/831 + 1/833 - 1/835 + 1/837 - 1/839 + 1/841 - 1/843 + 1/845 - 1/847 + 1/849 - 1/851 + 1/853 - 1/855 + 1/857 - 1/859 + 1/861 - 1/863 + 1/865 - 1/867 + 1/869 - 1/871 + 1/873 - 1/875 + 1/877 - 1/879 + 1/881 - 1/883 + 1/885 - 1/887 + 1/889 - 1/891 + 1/893 - 1/895 + 1/897 - 1/899 + 1/901 - 1/903 + 1/905 - 1/907 + 1/909 - 1/911 + 1/913 - 1/915 + 1/917 - 1/919 + 1/921 - 1/923 + 1/925 - 1/927 + 1/929 - 1/931 + 1/933 - 1/935 + 1/937 - 1/939 + 1/941 - 1/943 + 1/945 - 1/947 + 1/949 - 1/951 + 1/953 - 1/955 + 1/957 - 1/959 + 1/961 - 1/963 + 1/965 - 1/967 + 1/969 - 1/971 + 1/973 - 1/975 + 1/977 - 1/979 + 1/981 - 1/983 + 1/985 - 1/987 + 1/989 - 1/991 + 1/993 - 1/995 + 1/997 - 1/999 + 1/1001) - - 3.33968253968254025210 - 3.04183961892940324390 - 3.18918478227759605304 - 3.16381213401875616142 - 3.11985609006271236154 - 3.16286684275088436635 - 3.12076157959298949862 - 3.16199869299505120779 - 3.12159465259101098766 - 3.13959265558978506405 - 3.14358865958578892474 diff --git a/sample/hoc1/test/pi/Makefile b/sample/hoc1/test/pi/Makefile deleted file mode 100644 index e38b63c..0000000 --- a/sample/hoc1/test/pi/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -include ../Define.mk -include ../Define_test.mk -include ../Test.mk diff --git a/sample/hoc1/test/pi/cmd b/sample/hoc1/test/pi/cmd deleted file mode 100755 index ea36034..0000000 --- a/sample/hoc1/test/pi/cmd +++ /dev/null @@ -1 +0,0 @@ -cat in.txt && ../../hoc1 < in.txt diff --git a/sample/hoc1/test/pi/desc.txt b/sample/hoc1/test/pi/desc.txt deleted file mode 100644 index 94f959d..0000000 --- a/sample/hoc1/test/pi/desc.txt +++ /dev/null @@ -1 +0,0 @@ -hoc1 - pi 公式 pi/4 = 1 + 1/3 + 1/5 ... を実行 diff --git a/sample/hoc1/test/pi/in.txt b/sample/hoc1/test/pi/in.txt deleted file mode 100644 index e09c3ec..0000000 --- a/sample/hoc1/test/pi/in.txt +++ /dev/null @@ -1,12 +0,0 @@ -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 ) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 - 1/95) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 - 1/95 + 1/97) -4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 - 1/95 + 1/97 - 1/99) -4 * (1/1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 - 1/95 + 1/97 - 1/99 + 1/101 - 1/103 + 1/105 - 1/107 + 1/109 - 1/111 + 1/113 - 1/115 + 1/117 - 1/119 + 1/121 - 1/123 + 1/125 - 1/127 + 1/129 - 1/131 + 1/133 - 1/135 + 1/137 - 1/139 + 1/141 - 1/143 + 1/145 - 1/147 + 1/149 - 1/151 + 1/153 - 1/155 + 1/157 - 1/159 + 1/161 - 1/163 + 1/165 - 1/167 + 1/169 - 1/171 + 1/173 - 1/175 + 1/177 - 1/179 + 1/181 - 1/183 + 1/185 - 1/187 + 1/189 - 1/191 + 1/193 - 1/195 + 1/197 - 1/199 + 1/201 - 1/203 + 1/205 - 1/207 + 1/209 - 1/211 + 1/213 - 1/215 + 1/217 - 1/219 + 1/221 - 1/223 + 1/225 - 1/227 + 1/229 - 1/231 + 1/233 - 1/235 + 1/237 - 1/239 + 1/241 - 1/243 + 1/245 - 1/247 + 1/249 - 1/251 + 1/253 - 1/255 + 1/257 - 1/259 + 1/261 - 1/263 + 1/265 - 1/267 + 1/269 - 1/271 + 1/273 - 1/275 + 1/277 - 1/279 + 1/281 - 1/283 + 1/285 - 1/287 + 1/289 - 1/291 + 1/293 - 1/295 + 1/297 - 1/299 + 1/301 - 1/303 + 1/305 - 1/307 + 1/309 - 1/311 + 1/313 - 1/315 + 1/317 - 1/319 + 1/321 - 1/323 + 1/325 - 1/327 + 1/329 - 1/331 + 1/333 - 1/335 + 1/337 - 1/339 + 1/341 - 1/343 + 1/345 - 1/347 + 1/349 - 1/351 + 1/353 - 1/355 + 1/357 - 1/359 + 1/361 - 1/363 + 1/365 - 1/367 + 1/369 - 1/371 + 1/373 - 1/375 + 1/377 - 1/379 + 1/381 - 1/383 + 1/385 - 1/387 + 1/389 - 1/391 + 1/393 - 1/395 + 1/397 - 1/399 + 1/401 - 1/403 + 1/405 - 1/407 + 1/409 - 1/411 + 1/413 - 1/415 + 1/417 - 1/419 + 1/421 - 1/423 + 1/425 - 1/427 + 1/429 - 1/431 + 1/433 - 1/435 + 1/437 - 1/439 + 1/441 - 1/443 + 1/445 - 1/447 + 1/449 - 1/451 + 1/453 - 1/455 + 1/457 - 1/459 + 1/461 - 1/463 + 1/465 - 1/467 + 1/469 - 1/471 + 1/473 - 1/475 + 1/477 - 1/479 + 1/481 - 1/483 + 1/485 - 1/487 + 1/489 - 1/491 + 1/493 - 1/495 + 1/497 - 1/499 + 1/501 - 1/503 + 1/505 - 1/507 + 1/509 - 1/511 + 1/513 - 1/515 + 1/517 - 1/519 + 1/521 - 1/523 + 1/525 - 1/527 + 1/529 - 1/531 + 1/533 - 1/535 + 1/537 - 1/539 + 1/541 - 1/543 + 1/545 - 1/547 + 1/549 - 1/551 + 1/553 - 1/555 + 1/557 - 1/559 + 1/561 - 1/563 + 1/565 - 1/567 + 1/569 - 1/571 + 1/573 - 1/575 + 1/577 - 1/579 + 1/581 - 1/583 + 1/585 - 1/587 + 1/589 - 1/591 + 1/593 - 1/595 + 1/597 - 1/599 + 1/601 - 1/603 + 1/605 - 1/607 + 1/609 - 1/611 + 1/613 - 1/615 + 1/617 - 1/619 + 1/621 - 1/623 + 1/625 - 1/627 + 1/629 - 1/631 + 1/633 - 1/635 + 1/637 - 1/639 + 1/641 - 1/643 + 1/645 - 1/647 + 1/649 - 1/651 + 1/653 - 1/655 + 1/657 - 1/659 + 1/661 - 1/663 + 1/665 - 1/667 + 1/669 - 1/671 + 1/673 - 1/675 + 1/677 - 1/679 + 1/681 - 1/683 + 1/685 - 1/687 + 1/689 - 1/691 + 1/693 - 1/695 + 1/697 - 1/699 + 1/701 - 1/703 + 1/705 - 1/707 + 1/709 - 1/711 + 1/713 - 1/715 + 1/717 - 1/719 + 1/721 - 1/723 + 1/725 - 1/727 + 1/729 - 1/731 + 1/733 - 1/735 + 1/737 - 1/739 + 1/741 - 1/743 + 1/745 - 1/747 + 1/749 - 1/751 + 1/753 - 1/755 + 1/757 - 1/759 + 1/761 - 1/763 + 1/765 - 1/767 + 1/769 - 1/771 + 1/773 - 1/775 + 1/777 - 1/779 + 1/781 - 1/783 + 1/785 - 1/787 + 1/789 - 1/791 + 1/793 - 1/795 + 1/797 - 1/799 + 1/801 - 1/803 + 1/805 - 1/807 + 1/809 - 1/811 + 1/813 - 1/815 + 1/817 - 1/819 + 1/821 - 1/823 + 1/825 - 1/827 + 1/829 - 1/831 + 1/833 - 1/835 + 1/837 - 1/839 + 1/841 - 1/843 + 1/845 - 1/847 + 1/849 - 1/851 + 1/853 - 1/855 + 1/857 - 1/859 + 1/861 - 1/863 + 1/865 - 1/867 + 1/869 - 1/871 + 1/873 - 1/875 + 1/877 - 1/879 + 1/881 - 1/883 + 1/885 - 1/887 + 1/889 - 1/891 + 1/893 - 1/895 + 1/897 - 1/899 + 1/901 - 1/903 + 1/905 - 1/907 + 1/909 - 1/911 + 1/913 - 1/915 + 1/917 - 1/919 + 1/921 - 1/923 + 1/925 - 1/927 + 1/929 - 1/931 + 1/933 - 1/935 + 1/937 - 1/939 + 1/941 - 1/943 + 1/945 - 1/947 + 1/949 - 1/951 + 1/953 - 1/955 + 1/957 - 1/959 + 1/961 - 1/963 + 1/965 - 1/967 + 1/969 - 1/971 + 1/973 - 1/975 + 1/977 - 1/979 + 1/981 - 1/983 + 1/985 - 1/987 + 1/989 - 1/991 + 1/993 - 1/995 + 1/997 - 1/999) -4 * (1/1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31 + 1/33 - 1/35 + 1/37 - 1/39 + 1/41 - 1/43 + 1/45 - 1/47 + 1/49 - 1/51 + 1/53 - 1/55 + 1/57 - 1/59 + 1/61 - 1/63 + 1/65 - 1/67 + 1/69 - 1/71 + 1/73 - 1/75 + 1/77 - 1/79 + 1/81 - 1/83 + 1/85 - 1/87 + 1/89 - 1/91 + 1/93 - 1/95 + 1/97 - 1/99 + 1/101 - 1/103 + 1/105 - 1/107 + 1/109 - 1/111 + 1/113 - 1/115 + 1/117 - 1/119 + 1/121 - 1/123 + 1/125 - 1/127 + 1/129 - 1/131 + 1/133 - 1/135 + 1/137 - 1/139 + 1/141 - 1/143 + 1/145 - 1/147 + 1/149 - 1/151 + 1/153 - 1/155 + 1/157 - 1/159 + 1/161 - 1/163 + 1/165 - 1/167 + 1/169 - 1/171 + 1/173 - 1/175 + 1/177 - 1/179 + 1/181 - 1/183 + 1/185 - 1/187 + 1/189 - 1/191 + 1/193 - 1/195 + 1/197 - 1/199 + 1/201 - 1/203 + 1/205 - 1/207 + 1/209 - 1/211 + 1/213 - 1/215 + 1/217 - 1/219 + 1/221 - 1/223 + 1/225 - 1/227 + 1/229 - 1/231 + 1/233 - 1/235 + 1/237 - 1/239 + 1/241 - 1/243 + 1/245 - 1/247 + 1/249 - 1/251 + 1/253 - 1/255 + 1/257 - 1/259 + 1/261 - 1/263 + 1/265 - 1/267 + 1/269 - 1/271 + 1/273 - 1/275 + 1/277 - 1/279 + 1/281 - 1/283 + 1/285 - 1/287 + 1/289 - 1/291 + 1/293 - 1/295 + 1/297 - 1/299 + 1/301 - 1/303 + 1/305 - 1/307 + 1/309 - 1/311 + 1/313 - 1/315 + 1/317 - 1/319 + 1/321 - 1/323 + 1/325 - 1/327 + 1/329 - 1/331 + 1/333 - 1/335 + 1/337 - 1/339 + 1/341 - 1/343 + 1/345 - 1/347 + 1/349 - 1/351 + 1/353 - 1/355 + 1/357 - 1/359 + 1/361 - 1/363 + 1/365 - 1/367 + 1/369 - 1/371 + 1/373 - 1/375 + 1/377 - 1/379 + 1/381 - 1/383 + 1/385 - 1/387 + 1/389 - 1/391 + 1/393 - 1/395 + 1/397 - 1/399 + 1/401 - 1/403 + 1/405 - 1/407 + 1/409 - 1/411 + 1/413 - 1/415 + 1/417 - 1/419 + 1/421 - 1/423 + 1/425 - 1/427 + 1/429 - 1/431 + 1/433 - 1/435 + 1/437 - 1/439 + 1/441 - 1/443 + 1/445 - 1/447 + 1/449 - 1/451 + 1/453 - 1/455 + 1/457 - 1/459 + 1/461 - 1/463 + 1/465 - 1/467 + 1/469 - 1/471 + 1/473 - 1/475 + 1/477 - 1/479 + 1/481 - 1/483 + 1/485 - 1/487 + 1/489 - 1/491 + 1/493 - 1/495 + 1/497 - 1/499 + 1/501 - 1/503 + 1/505 - 1/507 + 1/509 - 1/511 + 1/513 - 1/515 + 1/517 - 1/519 + 1/521 - 1/523 + 1/525 - 1/527 + 1/529 - 1/531 + 1/533 - 1/535 + 1/537 - 1/539 + 1/541 - 1/543 + 1/545 - 1/547 + 1/549 - 1/551 + 1/553 - 1/555 + 1/557 - 1/559 + 1/561 - 1/563 + 1/565 - 1/567 + 1/569 - 1/571 + 1/573 - 1/575 + 1/577 - 1/579 + 1/581 - 1/583 + 1/585 - 1/587 + 1/589 - 1/591 + 1/593 - 1/595 + 1/597 - 1/599 + 1/601 - 1/603 + 1/605 - 1/607 + 1/609 - 1/611 + 1/613 - 1/615 + 1/617 - 1/619 + 1/621 - 1/623 + 1/625 - 1/627 + 1/629 - 1/631 + 1/633 - 1/635 + 1/637 - 1/639 + 1/641 - 1/643 + 1/645 - 1/647 + 1/649 - 1/651 + 1/653 - 1/655 + 1/657 - 1/659 + 1/661 - 1/663 + 1/665 - 1/667 + 1/669 - 1/671 + 1/673 - 1/675 + 1/677 - 1/679 + 1/681 - 1/683 + 1/685 - 1/687 + 1/689 - 1/691 + 1/693 - 1/695 + 1/697 - 1/699 + 1/701 - 1/703 + 1/705 - 1/707 + 1/709 - 1/711 + 1/713 - 1/715 + 1/717 - 1/719 + 1/721 - 1/723 + 1/725 - 1/727 + 1/729 - 1/731 + 1/733 - 1/735 + 1/737 - 1/739 + 1/741 - 1/743 + 1/745 - 1/747 + 1/749 - 1/751 + 1/753 - 1/755 + 1/757 - 1/759 + 1/761 - 1/763 + 1/765 - 1/767 + 1/769 - 1/771 + 1/773 - 1/775 + 1/777 - 1/779 + 1/781 - 1/783 + 1/785 - 1/787 + 1/789 - 1/791 + 1/793 - 1/795 + 1/797 - 1/799 + 1/801 - 1/803 + 1/805 - 1/807 + 1/809 - 1/811 + 1/813 - 1/815 + 1/817 - 1/819 + 1/821 - 1/823 + 1/825 - 1/827 + 1/829 - 1/831 + 1/833 - 1/835 + 1/837 - 1/839 + 1/841 - 1/843 + 1/845 - 1/847 + 1/849 - 1/851 + 1/853 - 1/855 + 1/857 - 1/859 + 1/861 - 1/863 + 1/865 - 1/867 + 1/869 - 1/871 + 1/873 - 1/875 + 1/877 - 1/879 + 1/881 - 1/883 + 1/885 - 1/887 + 1/889 - 1/891 + 1/893 - 1/895 + 1/897 - 1/899 + 1/901 - 1/903 + 1/905 - 1/907 + 1/909 - 1/911 + 1/913 - 1/915 + 1/917 - 1/919 + 1/921 - 1/923 + 1/925 - 1/927 + 1/929 - 1/931 + 1/933 - 1/935 + 1/937 - 1/939 + 1/941 - 1/943 + 1/945 - 1/947 + 1/949 - 1/951 + 1/953 - 1/955 + 1/957 - 1/959 + 1/961 - 1/963 + 1/965 - 1/967 + 1/969 - 1/971 + 1/973 - 1/975 + 1/977 - 1/979 + 1/981 - 1/983 + 1/985 - 1/987 + 1/989 - 1/991 + 1/993 - 1/995 + 1/997 - 1/999 + 1/1001) - diff --git a/sample/hoc1/test/sub/0.txt b/sample/hoc1/test/sub/0.txt deleted file mode 100644 index f8bafa0..0000000 --- a/sample/hoc1/test/sub/0.txt +++ /dev/null @@ -1,16 +0,0 @@ -2 - 1 -2 - 2 -2 - 3 -100 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 -10 -3.141592 - 2.718281828 -1000-0.0001 -1.23e2 - .1 --1 - 1.00000000000000000000 - 0.00000000000000000000 - -1.00000000000000000000 - 45.00000000000000000000 - 0.42331017200000031764 - 999.99990000000002510205 - 122.90000000000000568434 - -1.00000000000000000000 diff --git a/sample/hoc1/test/sub/Makefile b/sample/hoc1/test/sub/Makefile deleted file mode 100644 index e38b63c..0000000 --- a/sample/hoc1/test/sub/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -include ../Define.mk -include ../Define_test.mk -include ../Test.mk diff --git a/sample/hoc1/test/sub/cmd b/sample/hoc1/test/sub/cmd deleted file mode 100755 index ea36034..0000000 --- a/sample/hoc1/test/sub/cmd +++ /dev/null @@ -1 +0,0 @@ -cat in.txt && ../../hoc1 < in.txt diff --git a/sample/hoc1/test/sub/desc.txt b/sample/hoc1/test/sub/desc.txt deleted file mode 100644 index 579047d..0000000 --- a/sample/hoc1/test/sub/desc.txt +++ /dev/null @@ -1 +0,0 @@ -hoc1 - sub 引き算のテスト diff --git a/sample/hoc1/test/sub/in.txt b/sample/hoc1/test/sub/in.txt deleted file mode 100644 index 26f19b6..0000000 --- a/sample/hoc1/test/sub/in.txt +++ /dev/null @@ -1,8 +0,0 @@ -2 - 1 -2 - 2 -2 - 3 -100 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 -10 -3.141592 - 2.718281828 -1000-0.0001 -1.23e2 - .1 --1 -- 2.18.0