Skip to content

Commit c19f1d0

Browse files
authored
Merge pull request #129 from arnaud-m/v0.6.0-beta
Release version 0.6.0
2 parents 4e96b43 + 288dc9d commit c19f1d0

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.org

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ It is based on [[https://github.com/chocoteam/choco-solver][choco-solver]] which
4141

4242
The jar file contains all required dependencies.
4343
The next step is simply to run the console application.
44-
: java -cp target/cryptator-0.6.0-SNAPSHOT-with-dependencies.jar cryptator.Cryptator send+more=money
44+
: java -cp target/cryptator-0.6.0-with-dependencies.jar cryptator.Cryptator send+more=money
4545

4646
There are three console applications and the links below point to demonstration scripts.
4747

@@ -66,7 +66,7 @@ It is based on [[https://github.com/chocoteam/choco-solver][choco-solver]] which
6666
<dependency>
6767
<groupId>fr.univ-cotedazur</groupId>
6868
<artifactId>cryptator</artifactId>
69-
<version>0.6.0-SNAPSHOT</version>
69+
<version>0.6.0</version>
7070
</dependency>
7171
#+END_EXAMPLE
7272

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<groupId>fr.univ-cotedazur</groupId>
1717
<artifactId>cryptator</artifactId>
1818
<packaging>jar</packaging>
19-
<version>0.6.0-SNAPSHOT</version>
19+
<version>0.6.0</version>
2020
<name>cryptator</name>
2121
<description>Constraint-based cryptarithm solver</description>
2222
<url>https://github.com/arnaud-m/cryptator</url>

src/main/benchmarks/README.org

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#+BEGIN_SRC sh :results silent
1414
ln -s ../words .
15-
ln -s ../../../target/cryptator-0.6.0-SNAPSHOT-with-dependencies.jar .
15+
ln -s ../../../target/cryptator-0.6.0-with-dependencies.jar .
1616
#+END_SRC
1717

1818
** Clear directories
@@ -54,7 +54,7 @@
5454
** Create the solver
5555

5656
#+BEGIN_SRC sh :tangle solver.sh
57-
JAR=cryptator-0.6.0-SNAPSHOT-with-dependencies.jar
57+
JAR=cryptator-0.6.0-with-dependencies.jar
5858
MAINCLASS=cryptator.Cryptagen
5959

6060
MAINARGS=`cat $1 $2 | xargs`
@@ -95,7 +95,7 @@ exit $?
9595
** Create the solver
9696

9797
#+BEGIN_SRC sh :tangle solver.sh
98-
JAR=cryptator-0.6.0-SNAPSHOT-with-dependencies.jar
98+
JAR=cryptator-0.6.0-with-dependencies.jar
9999
MAINCLASS=cryptator.Cryptagen
100100

101101
MAINARGS=`cat $1 $2 | xargs`
@@ -248,7 +248,7 @@ The word lists ~colors.txt~ and ~monsters.txt~ takes the most time by far (aroun
248248
*** Cryptator
249249

250250
#+BEGIN_SRC sh :tangle solver.sh
251-
JAR=cryptator-0.6.0-SNAPSHOT-with-dependencies.jar
251+
JAR=cryptator-0.6.0-with-dependencies.jar
252252
MAINCLASS=cryptator.Cryptator
253253
MAINARGS=`cat $1 | xargs`
254254
## exclude cryptarithm with long words

src/main/shell/demo-generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ DIR="../words"
1515
## Execute the command.
1616
## Filter the output: print only the cryptarithm.
1717
function solve() {
18-
java -cp $JAR cryptator.Cryptagen -c TRUE $* | sed -n 's/\(.*+.*=.*\)/ - \1/p'
18+
java -cp $JAR cryptator.Cryptagen -c TRUE -v quiet $* | sed -n 's/\(.*+.*=.*\)/ - \1/p'
1919
}
2020

2121
echo "# Search cryptarithms with a UNIQUE solution"

src/main/shell/generate-doubly-true.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ MAX=100
1818
## Execute the command.
1919
## Filter the output: print only the cryptarithm.
2020
function solve() {
21-
java -cp $JAR cryptator.Cryptagen -c TRUE $* | sed -n 's/\(.*+.*=.*\)/ - \1/p'
21+
java -cp $JAR cryptator.Cryptagen -c TRUE -v quiet $* | sed -n 's/\(.*+.*=.*\)/ - \1/p'
2222
}
2323

2424
echo "# Doubly true cryptarithms between $MIN and $MAX"

0 commit comments

Comments
 (0)