Skip to content

Commit 10c67b7

Browse files
authored
Merge pull request #38 from aheui/opt1
최적화 기본 단계를 1로
2 parents 198dcac + f42c7f0 commit 10c67b7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ install: rpaheui-c rpaheui-bigint-c
3535
cp rpaheui-c /usr/local/bin/rpaheui
3636
ln -s /usr/local/bin/rpaheui /usr/local/bin/aheui
3737

38-
test-bigint:
38+
test-bigint-c:
3939
cd snippets && AHEUI="../rpaheui-bigint-c" bash test.sh
4040

41-
test-smallint:
41+
test-c:
4242
cd snippets && AHEUI="../rpaheui-c" bash test.sh --disable integer
4343

4444
test-py:

aheui/option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
parser = ArgumentParser(prog='aheui')
13-
parser.add_argument('--opt', '-O', default='2', choices='0,1,2', description='Set optimization level.', full_description="""\t0: No optimization.
13+
parser.add_argument('--opt', '-O', default='1', choices='0,1,2', description='Set optimization level.', full_description="""\t0: No optimization.
1414
\t1: Quickly resolve deadcode by rough stacksize emulation and merge constant operations.
1515
\t2: Perfectly resolve deadcode by stacksize emulation, reserialize code chunks and merge constant operations.
1616
""")

aheui/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.2.4'
1+
VERSION = '1.2.5'

0 commit comments

Comments
 (0)