rush hour puzzle solver 0.2.7
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 647
Sudoku solver 0.1
Sudoku solver application was created for solving a Sudoku with a backtracking algorithm. more>>
Sudoku solver application was created for solving a Sudoku with a backtracking algorithm. Instead of using a 9 x 9 matrix, it extends the matrix to 10 x 36 (10 rows, 36 columns), storing information in the extra cells.
The last row is used for keeping track of how many cells, for the current column, are still available.
The columns 9-17 (0-based) are used for storing the numbers which are still available in rows 0-8.
The columns 18-26 are used for storing the numbers which are still available in columns 0-8.
The columns 27-35 are used for storing the numbers which are still available in each square (counting from left to right and from top to bottom).
<<lessThe last row is used for keeping track of how many cells, for the current column, are still available.
The columns 9-17 (0-based) are used for storing the numbers which are still available in rows 0-8.
The columns 18-26 are used for storing the numbers which are still available in columns 0-8.
The columns 27-35 are used for storing the numbers which are still available in each square (counting from left to right and from top to bottom).
Download (MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
1712 downloads
Java Sudoku 1.0.1
Java Sudoku is a cross platform version of the popular Sudoku logic game. more>>
Java Sudoku is a cross platform version of the popular Sudoku logic game. Java Sudoku features an advanced user interface that is both easy to use and appealing to the eye.
It allows you to generate completely random Sudoku puzzles, enter your own puzzles from newspapers and magazines, or load them from Sudoku XML files. Java Sudoku can also be used as a Sudoku generator and solver.
Main features:
- Random puzzles every time you play
- Helping lines mode in the option menu, so You can see easier, if there is a collision
- 2 different systems of selecting cells and entering numbers
- 3 difficulty levels and an user custom level
- 3 Different Numbers Distributions
- Load/Save Sudoku games without any kind of losses
- Design your own puzzles - Under construction
<<lessIt allows you to generate completely random Sudoku puzzles, enter your own puzzles from newspapers and magazines, or load them from Sudoku XML files. Java Sudoku can also be used as a Sudoku generator and solver.
Main features:
- Random puzzles every time you play
- Helping lines mode in the option menu, so You can see easier, if there is a collision
- 2 different systems of selecting cells and entering numbers
- 3 difficulty levels and an user custom level
- 3 Different Numbers Distributions
- Load/Save Sudoku games without any kind of losses
- Design your own puzzles - Under construction
Download (0.071MB)
Added: 2006-08-04 License: GPL (GNU General Public License) Price:
1449 downloads
external IP 0.9.9
external IP shows your current external IP in the browsers statusbar. more>>
external IP shows your current external IP in the browsers statusbar.
External IP is set to check your IP address once every hour.
<<lessExternal IP is set to check your IP address once every hour.
Download (0.004MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
846 downloads
Rush Hour Puzzle Solver 0.2.7
Rush Hour Puzzle Solver project is a Rush Hour puzzle solver that illustrates the solution with PostScript. more>>
Rush Hour Puzzle Solver project is a Rush Hour puzzle solver that illustrates the solution with PostScript.
Rush Hour Puzzle Solver is a small C++ program that reads a Rush Hour board from a text file and produces a nice PostScript file that shows the shortest solution.
<<lessRush Hour Puzzle Solver is a small C++ program that reads a Rush Hour board from a text file and produces a nice PostScript file that shows the shortest solution.
Download (0.45MB)
Added: 2006-12-20 License: Freely Distributable Price:
1058 downloads
Games::Mastermind::Solver 0.02
Games::Mastermind::Solver is a Master Mind puzzle solver. more>>
Games::Mastermind::Solver is a Master Mind puzzle solver.
SYNOPSIS
# a trivial Mastermind solver
use Games::Mastermind;
use Games::Mastermind::Solver::BruteForce;
my $player = Games::Mastermind::Solver::BruteForce
->new( Games::Mastermind->new );
my $try;
print join( , @{$player->game->code} ), "nn";
until( $player->won || ++$try > 10 ) {
my( $win, $guess, $result ) = $player->move;
print join( , @$guess ),
,
B x $result->[0], W x $result->[1],
"n";
}
Games::Mastermind::Solver is a base class for Master Mind solvers.
<<lessSYNOPSIS
# a trivial Mastermind solver
use Games::Mastermind;
use Games::Mastermind::Solver::BruteForce;
my $player = Games::Mastermind::Solver::BruteForce
->new( Games::Mastermind->new );
my $try;
print join( , @{$player->game->code} ), "nn";
until( $player->won || ++$try > 10 ) {
my( $win, $guess, $result ) = $player->move;
print join( , @$guess ),
,
B x $result->[0], W x $result->[1],
"n";
}
Games::Mastermind::Solver is a base class for Master Mind solvers.
Download (0.004MB)
Added: 2007-01-03 License: Perl Artistic License Price:
1040 downloads
Games::Mastermind::Solver::BruteForce 0.02
Games::Mastermind::Solver::BruteForce is a Master Mind puzzle solver. more>>
Games::Mastermind::Solver::BruteForce is a Master Mind puzzle solver.
SYNOPSIS
# See Games::Mastermind::Solver
Games::Mastermind::Solver::BruteForce uses the classical brute-force algorithm for solving Master Mind puzzles.
METHODS
remaining
$number = $player->remaining;
The number of possible solutions given the knowledge the player has accumulated.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
<<lessSYNOPSIS
# See Games::Mastermind::Solver
Games::Mastermind::Solver::BruteForce uses the classical brute-force algorithm for solving Master Mind puzzles.
METHODS
remaining
$number = $player->remaining;
The number of possible solutions given the knowledge the player has accumulated.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Download (0.004MB)
Added: 2007-01-04 License: Perl Artistic License Price:
1041 downloads
Games::LMSolve::Base 0.8.1
Games::LMSolve::Base is a base class for puzzle solvers. more>>
Games::LMSolve::Base is a base class for puzzle solvers.
SYNOPSIS
package MyPuzzle::Solver;
use Games::LMSolve::Base;
@ISA = qw(Games::LMSolve::Base);
# Override these methods:
sub input_board { ... }
sub pack_state { ... }
sub unpack_state { ... }
sub display_state { ... }
sub check_if_final_state { ... }
sub enumerate_moves { ... }
sub perform_move { ... }
# Optionally:
sub render_move { ... }
sub check_if_unsolvable { ... }
package main;
my $self = MyPuzzle::Solver->new();
$self->solve_board($filename);
This class implements a generic solver for single player games. In order to use it, one must inherit from it and implement some abstract methods. Afterwards, its interface functions can be invoked to actually solve the game.
<<lessSYNOPSIS
package MyPuzzle::Solver;
use Games::LMSolve::Base;
@ISA = qw(Games::LMSolve::Base);
# Override these methods:
sub input_board { ... }
sub pack_state { ... }
sub unpack_state { ... }
sub display_state { ... }
sub check_if_final_state { ... }
sub enumerate_moves { ... }
sub perform_move { ... }
# Optionally:
sub render_move { ... }
sub check_if_unsolvable { ... }
package main;
my $self = MyPuzzle::Solver->new();
$self->solve_board($filename);
This class implements a generic solver for single player games. In order to use it, one must inherit from it and implement some abstract methods. Afterwards, its interface functions can be invoked to actually solve the game.
Download (0.021MB)
Added: 2007-01-06 License: Perl Artistic License Price:
1021 downloads
TTraffic 0.8
TTraffic project is a Tcl/Tk version of the game Rush Hour. more>>
TTraffic project is a Tcl/Tk version of the game Rush Hour created by Binary Arts Coporation.
The goal is to remove the red car from the grid through the slot on the right. To do this you, have to slide the other cars out of the way.
TTraffic is inspired by GTraffic, the Gnome version Rush Hour.
TTraffic comes with about 15.000 puzzles ranging from intermediate to expert. These puzzles were automatically created by the program gtlevel.
TTraffic has been tested on Linux, Macintosh, Windows and Windows NT.
<<lessThe goal is to remove the red car from the grid through the slot on the right. To do this you, have to slide the other cars out of the way.
TTraffic is inspired by GTraffic, the Gnome version Rush Hour.
TTraffic comes with about 15.000 puzzles ranging from intermediate to expert. These puzzles were automatically created by the program gtlevel.
TTraffic has been tested on Linux, Macintosh, Windows and Windows NT.
Download (0.090MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1057 downloads
Somatic 1.6
Somatic is a generic 3D puzzle solver for soma and pentomino-like puzzles. more>>
Somatic project is a generic 3D puzzle solver for soma and pentomino-like puzzles.
Somatic is a generic 3D puzzle solver for soma and pentomino-like puzzles. For an arbitrary set of pieces and a figure with not more than 64 cubes, it can check whether this figure can be built using these pieces and return one or more solutions.
It can also solve split figures that are not connected and partial figures, which do not need all pieces to be built.
Piece sets that can be solved include but are not limited to the soma cube, the somaplus set, the doublesoma set, the bedlam cube, and the pentomino set.
<<lessSomatic is a generic 3D puzzle solver for soma and pentomino-like puzzles. For an arbitrary set of pieces and a figure with not more than 64 cubes, it can check whether this figure can be built using these pieces and return one or more solutions.
It can also solve split figures that are not connected and partial figures, which do not need all pieces to be built.
Piece sets that can be solved include but are not limited to the soma cube, the somaplus set, the doublesoma set, the bedlam cube, and the pentomino set.
Download (0.060MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1028 downloads
PyTraffic 2.5.4
PyTraffic is a Python version of the board game Rush Hour created by Binary Arts Coporation. more>>
PyTraffic is a computer version of the board puzzle Rush Hour invented by the famous puzzle designer Nob Yoshigahara and commercialized by Binary Arts Corporation.
The goal of PyTraffic project is to remove the red car out of the grid through the slot on the right. To do this you have to slide the other cars out of the way. PyTraffic is written in the scripting language Python.
Playing the game on a real board is much more fun than playing it on the computer (ask my daughter!). So after having used PyTraffic you may consider buying the real thing.
Main features:
- PyTraffic comes with about 19.000 puzzles ranging in difficulty from "Intermediate" to "Expert".
- In addition it is possible to play "Trivial" and "Easy" levels which are generated on the fly. These are suitable for small children. My six year old daughter Sarah routinely does "Easy" puzzles.
- PyTraffic has a help facility which is able to find the best move in every position. It is available through a button on the toolbar.
- PyTraffic comes with several "themes". Some of the themes have a 3D-look. Making your own themes is not very hard.
<<lessThe goal of PyTraffic project is to remove the red car out of the grid through the slot on the right. To do this you have to slide the other cars out of the way. PyTraffic is written in the scripting language Python.
Playing the game on a real board is much more fun than playing it on the computer (ask my daughter!). So after having used PyTraffic you may consider buying the real thing.
Main features:
- PyTraffic comes with about 19.000 puzzles ranging in difficulty from "Intermediate" to "Expert".
- In addition it is possible to play "Trivial" and "Easy" levels which are generated on the fly. These are suitable for small children. My six year old daughter Sarah routinely does "Easy" puzzles.
- PyTraffic has a help facility which is able to find the best move in every position. It is available through a button on the toolbar.
- PyTraffic comes with several "themes". Some of the themes have a 3D-look. Making your own themes is not very hard.
Download (2.4MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
969 downloads
KSudoku 0.4
KSudoku is a Sudoku puzzle generator and solver for KDE. more>>
KSudoku project can generate and solve sudoku puzzles (of different difficulty level) using a randomized least-candidate algorithm.
The sudoku boards currently supported are 9x9 and 16x16: but the program is fully expandable since the algorithm is extendible to any general graph coloring problem (the board is in fact stored as a graph and the numbers are the colors)
In order to create a playable puzzle it fills a blank sudoku grid with a completed puzzle (randomly), then another algorithm (to be improved with some logical constraint) removes randomly numbers from it checking each time that the resultant puzzle has only one solution: it is a bit slower than logic-based elimination tecniques but it creates puzzles that are less straight-solved (more fun).
The GUI is user-friendly and requires KDE. Written in C++.
INSTALLATION
1. Open a shell in project directory (the one where this file is located)
2. Run "./configure"
(will install the program in /usr/local/kde, if you want to install in /usr run "./configure --prefix=/usr")
3. Run "make"
4. Run "make install" as root.
5. Run "ksudoku" (if does not start check point 2)
Enhancements:
- Added support for custom shaped sudokus
- Samurai sudoku
- Jigsaw sudoku, XSudoku, 4x4
- Undo/redo
- Added new export system (you can print multiple puzzles in the same page)
- File format is now XML
- Added new welcomescreen and settings dialog
- Internal structure changed
<<lessThe sudoku boards currently supported are 9x9 and 16x16: but the program is fully expandable since the algorithm is extendible to any general graph coloring problem (the board is in fact stored as a graph and the numbers are the colors)
In order to create a playable puzzle it fills a blank sudoku grid with a completed puzzle (randomly), then another algorithm (to be improved with some logical constraint) removes randomly numbers from it checking each time that the resultant puzzle has only one solution: it is a bit slower than logic-based elimination tecniques but it creates puzzles that are less straight-solved (more fun).
The GUI is user-friendly and requires KDE. Written in C++.
INSTALLATION
1. Open a shell in project directory (the one where this file is located)
2. Run "./configure"
(will install the program in /usr/local/kde, if you want to install in /usr run "./configure --prefix=/usr")
3. Run "make"
4. Run "make install" as root.
5. Run "ksudoku" (if does not start check point 2)
Enhancements:
- Added support for custom shaped sudokus
- Samurai sudoku
- Jigsaw sudoku, XSudoku, 4x4
- Undo/redo
- Added new export system (you can print multiple puzzles in the same page)
- File format is now XML
- Added new welcomescreen and settings dialog
- Internal structure changed
Download (0.31MB)
Added: 2007-03-17 License: GPL (GNU General Public License) Price:
960 downloads
Sudokut 0.3
Sudokut is a command line solver for Sudoku puzzles. more>>
Sudokut is a command line solver for Sudoku puzzles. When supplied with a Sudoku string or file, it returns all possible solutions.
Sudokut takes approximately half a second to solve a medium force Sudoku by using an efficient algorithm that is guaranteed to find all the solutions. It accepts many options that implement various features (validity check, diff, suggestions, and probing).
Enhancements:
- two new solving techniques are supported: naked triplets reduction, hidden triplets reduction
- new -u option to test the unicity of the solution
- new -m option to modify the string
<<lessSudokut takes approximately half a second to solve a medium force Sudoku by using an efficient algorithm that is guaranteed to find all the solutions. It accepts many options that implement various features (validity check, diff, suggestions, and probing).
Enhancements:
- two new solving techniques are supported: naked triplets reduction, hidden triplets reduction
- new -u option to test the unicity of the solution
- new -m option to modify the string
Download (0.027MB)
Added: 2006-09-15 License: BSD License Price:
1134 downloads
Automagical Sudoku Solver 1.7
Automagical Sudoku Solver project is an attempt to solve Sudoku puzzles using a computer. more>>
Automagical Sudoku Solver project is an attempt to solve Sudoku puzzles using a computer. It can solve rather tough puzzles, but not all of them.
Installation:
The source code should compile flawlessly using the make utility. Then, simply run "ass < foo", where foo is a sudoku puzzle in text format like the ones in the puzzles/ directory.
Arguments
-s show progress using an ncurses interface
-v show version number
-d [2-4] show debug info (4 is highest level)
<<lessInstallation:
The source code should compile flawlessly using the make utility. Then, simply run "ass < foo", where foo is a sudoku puzzle in text format like the ones in the puzzles/ directory.
Arguments
-s show progress using an ncurses interface
-v show version number
-d [2-4] show debug info (4 is highest level)
Download (0.037MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
861 downloads

LDAP Account Manager 2.6.0 / 2.7.0 RC1
LDAP Account Manager RC1 is a webfrontend for managing accounts stored in an LDAP directory. more>> <<less
Added: 2009-07-27 License: GPL Price: FREE
downloads
Scrabble Blast Solver 0.1
Scrabble Blast Solver application more>>
Scrabble Blast Solver 0.1 offers you a professional and easy-to-use software which is an effective way to find and display words and their score for the popular online Scrabble Blast game. This product will be your good choice.
Enhancements: Only calculates the correct score of words for the first round.
Added: 2009-01-29 License: GPL Price: FREE
20 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above rush hour puzzle solver 0.2.7 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed