Skip to content

Commit

Permalink
release 1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
smack42 committed Sep 13, 2015
1 parent 9edbe05 commit a742a70
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 6 deletions.
18 changes: 18 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@ CHANGES



1.3.5 (2015-09-13)

+ added French translation, contributed by Raphaël Huck
+ find more solutions; in response to bug #7
- added an optional "slow search" mode that doesn't prune the search tree
as aggressively as the standard search.
- as a result of this, it runs significantly slower, but it finds a larger
number of distinct, equally good solutions for some game positions.
- it's activated by system property "UseSlowSearchMoreSolutions".
(for example in file appstart.properties,
or as VM parameter -DUseSlowSearchMoreSolutions)
- this option is semi-hidden (not in GUI, but only in properties file) and
set to "off" by default, because it slows down the solver significantly,
so much that longer solutions can't be found at all.
(like 0765+42+2E21BD0F+93 with 24 moves)



1.3.4 (2014-10-05)

+ small speedup of the IDDFS solver algorithm (using a few MB more memory)
Expand Down
4 changes: 2 additions & 2 deletions LIESMICH.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DriftingDroids - noch ein weiteres Ricochet Robots Lösungsprogramm.

Version 1.3.4 (2014-10-05)
Version 1.3.5 (2015-09-13)
Homepage https://github.com/smack42/DriftingDroids/wiki


Expand Down Expand Up @@ -38,7 +38,7 @@ Für mehr Informationen lies bitte die beiliegende Dokumentation.
## Lizenz

DriftingDroids - yet another Ricochet Robots solver program.
Copyright (C) 2011-2014 Michael Henke <smack42@googlemail.com>
Copyright (C) 2011-2015 Michael Henke <smack42@googlemail.com>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DriftingDroids - yet another Ricochet Robots solver program.

Version 1.3.4 (2014-10-05)
Version 1.3.5 (2015-09-13)
Homepage https://github.com/smack42/DriftingDroids/wiki


Expand Down Expand Up @@ -36,7 +36,7 @@ For more info please read the included documentation.
## license

DriftingDroids - yet another Ricochet Robots solver program.
Copyright (C) 2011-2014 Michael Henke <smack42@googlemail.com>
Copyright (C) 2011-2015 Michael Henke <smack42@googlemail.com>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
Binary file modified doc/DriftingDroids_Nutzerdokumentation.odt
Binary file not shown.
Binary file modified doc/DriftingDroids_Nutzerdokumentation.pdf
Binary file not shown.
Binary file modified doc/DriftingDroids_user_documentation.odt
Binary file not shown.
Binary file modified doc/DriftingDroids_user_documentation.pdf
Binary file not shown.
Binary file added releases/DriftingDroids_1.3.5.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions src/driftingdroids/ui/Starter.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* DriftingDroids - yet another Ricochet Robots solver program.
Copyright (C) 2011-2014 Michael Henke
Copyright (C) 2011-2015 Michael Henke
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -40,7 +40,7 @@
public class Starter {

public static void main(String[] args) throws InterruptedException, InvocationTargetException {
new SwingGUI("DriftingDroids 1.3.4 (2014-10-05)");
new SwingGUI("DriftingDroids 1.3.5 (2015-09-13)");
// runTestRandom1000();
// runTestKeyDepthMap();
// runTestKeyInt();
Expand Down

0 comments on commit a742a70

Please sign in to comment.