solve
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 378
LM-Solve 0.8.1
LM-Solve is a solver for Logic Mazes. more>>
LM-Solve project is a solver for Logic Mazes.
LM-Solve is a solver for several types of the puzzles present on the Logic Mazes site.
It currently supports Alice Mazes, Number Mazes, Plank Puzzles, Theseus and the Minotaur Mazes, and Tilt Mazes.
They are written in Perl and should be very portable.
Use the CPAN.pm module install Games::LMSolve command to install LM-Solve. For instance, invoke the following command on the command line:
# perl -MCPAN -e install Games::LMSolve
<<lessLM-Solve is a solver for several types of the puzzles present on the Logic Mazes site.
It currently supports Alice Mazes, Number Mazes, Plank Puzzles, Theseus and the Minotaur Mazes, and Tilt Mazes.
They are written in Perl and should be very portable.
Use the CPAN.pm module install Games::LMSolve command to install LM-Solve. For instance, invoke the following command on the command line:
# perl -MCPAN -e install Games::LMSolve
Download (0.020MB)
Added: 2006-12-21 License: Public Domain Price:
1038 downloads
Anagram Solver 0.1
Anagram Solver is a simple anagram solver program. more>>
Anagram Solver is a simple anagram solver program.
You can use it against any spelling dictionary that is formatted:
- one word per line
- in alphabetical order
If its not in alphabetical order, you could send it through pipe.
The basic algorithm tries all possible combinations of a word, in such a way that the combinations are generated in alphabetical order.
It also knows the next real word in the list, so it can tell whether or not it is futile to pursue a certain node. These optimizations make it possible for it to solve a 8+ letter word in a few seconds
To use it, simply point it to your aspell dictionary file, usually located in /usr/share/dict/linux.words
<<lessYou can use it against any spelling dictionary that is formatted:
- one word per line
- in alphabetical order
If its not in alphabetical order, you could send it through pipe.
The basic algorithm tries all possible combinations of a word, in such a way that the combinations are generated in alphabetical order.
It also knows the next real word in the list, so it can tell whether or not it is futile to pursue a certain node. These optimizations make it possible for it to solve a 8+ letter word in a few seconds
To use it, simply point it to your aspell dictionary file, usually located in /usr/share/dict/linux.words
Download (0.47MB)
Added: 2006-04-06 License: GPL (GNU General Public License) Price:
1306 downloads
Math::Polynomial::Solve 2.11
Math::Polynomial::Solve is a Perl module to find the roots of polynomial equations. more>>
Math::Polynomial::Solve is a Perl module to find the roots of polynomial equations.
SYNOPSIS
use Math::Complex; # The roots may be complex numbers.
use Math::Polynomial::Solve qw(poly_roots);
my @x = poly_roots(@coefficients);
or
use Math::Complex; # The roots may be complex numbers.
use Math::Polynomial::Solve qw(poly_roots get_hessenberg set_hessenberg);
#
# Force the use of the matrix method.
#
set_hessenberg(1);
my @x = poly_roots(@coefficients);
or
use Math::Complex; # The roots may be complex numbers.
use Math::Polynomial::Solve
qw(linear_roots quadratic_roots cubic_roots quartic_roots);
# Find the roots of ax + b
my @x1 = linear_roots($a, $b);
# Find the roots of ax**2 + bx +c
my @x2 = quadratic_roots($a, $b, $c);
# Find the roots of ax**3 + bx**2 +cx + d
my @x3 = cubic_roots($a, $b, $c, $d);
# Find the roots of ax**4 + bx**3 +cx**2 + dx + e
my @x4 = quartic_roots($a, $b, $c, $d, $e);
<<lessSYNOPSIS
use Math::Complex; # The roots may be complex numbers.
use Math::Polynomial::Solve qw(poly_roots);
my @x = poly_roots(@coefficients);
or
use Math::Complex; # The roots may be complex numbers.
use Math::Polynomial::Solve qw(poly_roots get_hessenberg set_hessenberg);
#
# Force the use of the matrix method.
#
set_hessenberg(1);
my @x = poly_roots(@coefficients);
or
use Math::Complex; # The roots may be complex numbers.
use Math::Polynomial::Solve
qw(linear_roots quadratic_roots cubic_roots quartic_roots);
# Find the roots of ax + b
my @x1 = linear_roots($a, $b);
# Find the roots of ax**2 + bx +c
my @x2 = quadratic_roots($a, $b, $c);
# Find the roots of ax**3 + bx**2 +cx + d
my @x3 = cubic_roots($a, $b, $c, $d);
# Find the roots of ax**4 + bx**3 +cx**2 + dx + e
my @x4 = quartic_roots($a, $b, $c, $d, $e);
Download (0.015MB)
Added: 2007-07-19 License: Perl Artistic License Price:
832 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
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
Optimization Solver for OpenOffice.org Calc 2006-06-16
Optimization Solver for OpenOffice.org Calc is designed to compute an optimized set of decision variables. more>>
The Linear and Non-Linear Optimization Solver (or simply the Optimization Solver) is designed to compute an optimized set of decision variables that either maximize or minimize a given objective function while also satisfying a set of arbitrary constraints defined by the user.
It is widely used in the field of operations research, and can also be a very useful business tool that helps you make an informed decision on a multitude of complex scenarios that you may encounter in your day-to-day business operations.
Version restrictions:
- Currently it only solves constrained linear models! An algorithm for non-linear model is being worked on.
- A constraint value must be a cell reference. Simply typing a value will not work.
- The Reset and Options buttons do absolutely nothing!
- It assumes that the model is linear. It does NOT solve a non-linear model yet.
Enhancements:
- The two packages have been combined into one, so that only one package needs to be installed.
- Preprocessing of the model has been disabled, because it was preventing lpsolve from solving certain models.
<<lessIt is widely used in the field of operations research, and can also be a very useful business tool that helps you make an informed decision on a multitude of complex scenarios that you may encounter in your day-to-day business operations.
Version restrictions:
- Currently it only solves constrained linear models! An algorithm for non-linear model is being worked on.
- A constraint value must be a cell reference. Simply typing a value will not work.
- The Reset and Options buttons do absolutely nothing!
- It assumes that the model is linear. It does NOT solve a non-linear model yet.
Enhancements:
- The two packages have been combined into one, so that only one package needs to be installed.
- Preprocessing of the model has been disabled, because it was preventing lpsolve from solving certain models.
Download (0.20MB)
Added: 2006-06-17 License: LGPL (GNU Lesser General Public License) Price:
708 downloads
SDL Vexed 0.6
SDL Vexed is a puzzle game written in Perl-SDL. more>>
SDL Vexed project is a puzzle game written in Perl-SDL.
Vexed is an addictive (and written in Perl) puzzle game in which your goal is to move similar blocks together, which causes them to disappear. Once all the blocks are gone, youve solved the level and youre presented with a new Vexed level to solve.
In Vexed you have to move blocks by putting the mouse on them and dragging (using mouse button) to either the right or left. If an empty space is encountered, "gravity" takes over and the blocks fall towards the bottom.
Scoring is based on a golf-like "par" concept. The Vexed level pack has a solution stored for each level. If you solve the level in the same number of moves as what is stored in the level pack, you get a score of 0, or par, for that level. Note that the stored solution may not be the most efficient one, so you can beat "par" and have a negative score.
The score displayed while playing is a cumulative score for the entire level pack.
Using the Solution feature adds five to your score.
<<lessVexed is an addictive (and written in Perl) puzzle game in which your goal is to move similar blocks together, which causes them to disappear. Once all the blocks are gone, youve solved the level and youre presented with a new Vexed level to solve.
In Vexed you have to move blocks by putting the mouse on them and dragging (using mouse button) to either the right or left. If an empty space is encountered, "gravity" takes over and the blocks fall towards the bottom.
Scoring is based on a golf-like "par" concept. The Vexed level pack has a solution stored for each level. If you solve the level in the same number of moves as what is stored in the level pack, you get a score of 0, or par, for that level. Note that the stored solution may not be the most efficient one, so you can beat "par" and have a negative score.
The score displayed while playing is a cumulative score for the entire level pack.
Using the Solution feature adds five to your score.
Download (0.51MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
1037 downloads
Password Save 0.5
Password Save extension brings up a plain text listing of your passwords in a browser window. more>>
Password Save extension brings up a plain text listing of your passwords in a browser window that can be easily copy-pasted or saved to the hard-drive.
Some javascript warning fixes and a bit of debugging code for helping people that the extension doesnt work for (Email me if you get a blank screen and have some free time to help me debug and well solve this problem once and for all)
In Preferences, go to Privacy => Passwords. When you click View Saved Passwords, there will be an added "Dump Passwords" button. Clicking this will pop up a new browser window with the saved passwords which can easily be saved, printed, or copy-pasted into another location.
This extension will only work (as is) on the released 1.5beta1 - 1.5beta2. The intall.rdf can be tweaked to get it to install fine on any recent nightly or the Deer Park Alphas. It -=can not=- be tweaked to work on 1.0. Sorry!
<<lessSome javascript warning fixes and a bit of debugging code for helping people that the extension doesnt work for (Email me if you get a blank screen and have some free time to help me debug and well solve this problem once and for all)
In Preferences, go to Privacy => Passwords. When you click View Saved Passwords, there will be an added "Dump Passwords" button. Clicking this will pop up a new browser window with the saved passwords which can easily be saved, printed, or copy-pasted into another location.
This extension will only work (as is) on the released 1.5beta1 - 1.5beta2. The intall.rdf can be tweaked to get it to install fine on any recent nightly or the Deer Park Alphas. It -=can not=- be tweaked to work on 1.0. Sorry!
Download (0.005MB)
Added: 2006-04-09 License: GPL (GNU General Public License) Price:
738 downloads
Scavenger 1.4.4
Scavenger project is a Lode Runner arcade game clone. more>>
Scavenger project is a Lode Runner arcade game clone.
Youve got to run around and collect objects while avoiding enemies. Some objects are buried and youve got to dig down to get at them.
Its an addictive game and some of the levels are devilishly (cruelly) complicated to solve.
The game runs under Linux/Xwindows. It comes with a level editor so you can make your own levels.
There is also a graphics/sprite editor built into the game to allow you to paint your own graphics.
Enhancements:
- Fix for if sound fork doesnt open successfully, it exits and doesnt bog down the cpu or something.
- Icon for if the program is minimized.
<<lessYouve got to run around and collect objects while avoiding enemies. Some objects are buried and youve got to dig down to get at them.
Its an addictive game and some of the levels are devilishly (cruelly) complicated to solve.
The game runs under Linux/Xwindows. It comes with a level editor so you can make your own levels.
There is also a graphics/sprite editor built into the game to allow you to paint your own graphics.
Enhancements:
- Fix for if sound fork doesnt open successfully, it exits and doesnt bog down the cpu or something.
- Icon for if the program is minimized.
Download (0.18MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1137 downloads
Sudoku Tool 1.0
Sudoku Tool is a sudoku game that helps you to solve sudoku puzzles. more>>
Sudoku Tool is a sudoku game that helps you to solve sudoku puzzles. Sudoku Tool can generate puzzles randomly or puzzles can be entered manually.
Some of the features include random puzzle generation, pencil marks, and the ability to save games.
Manual Setup:
The game starts in initialization mode. In this mode, you are setting up the a puzzle that you got from a newspaper, online, ... You are manually setting up the puzzle.
To select a location, click a square with the left mouse button and type in the number you want to place 1-9, or 0 or space to remove a value you placed there previously. You can also change other values by simply typing a new number.
When you have the puzzle set up the way you want, click the Start Game button to start playing.
Random Game:
To have a game randomly generated for you, click the Setup New Game button. A new window pops up asking you to select either "Manual" or "Random". Select "random" and a new game will appear.
To build, use:
make -f Makefile.[system]
<<lessSome of the features include random puzzle generation, pencil marks, and the ability to save games.
Manual Setup:
The game starts in initialization mode. In this mode, you are setting up the a puzzle that you got from a newspaper, online, ... You are manually setting up the puzzle.
To select a location, click a square with the left mouse button and type in the number you want to place 1-9, or 0 or space to remove a value you placed there previously. You can also change other values by simply typing a new number.
When you have the puzzle set up the way you want, click the Start Game button to start playing.
Random Game:
To have a game randomly generated for you, click the Setup New Game button. A new window pops up asking you to select either "Manual" or "Random". Select "random" and a new game will appear.
To build, use:
make -f Makefile.[system]
Download (1.5MB)
Added: 2006-08-21 License: GPL (GNU General Public License) Price:
1164 downloads
Sudoku Savant 1.1
Sudoku Savant is a simple GUI-driven application to solve and generate Sudoku puzzles through logical means. more>>
Sudoku Savant is a simple GUI-driven application to solve and generate Sudoku puzzles through logical means.
Sudoku Savant generates and solves standard Sudoku puzzles with anything from 3x3 to 5x6 or 6x5 grids, using the following strategies:
- Singletons
- Locked candidates
- Number subsets
- X-Wings, Swordfish and Jellyfish
- Both Simple and Multi-Colouring.
These strategies should be enough to provide a step by step solution for any Sudoku puzzle that you are likely to find in a newspaper or magazine, although Savant can also resort to "trial and error" if presented with something really pathologically nasty. (This will at least confirm that the puzzles solution is unique.)
You may also parameterise or turn off the more advanced strategies, to see whether they were really needed.
Finally, Sudoku Savant lets you solve the puzzle by hand, providing hints, cell colouring, up to 4 pencil marks per cell, and the ability to high-light any incorrect moves. A partially completed puzzle can be saved in a simple text format so that you can continue solving it later.
<<lessSudoku Savant generates and solves standard Sudoku puzzles with anything from 3x3 to 5x6 or 6x5 grids, using the following strategies:
- Singletons
- Locked candidates
- Number subsets
- X-Wings, Swordfish and Jellyfish
- Both Simple and Multi-Colouring.
These strategies should be enough to provide a step by step solution for any Sudoku puzzle that you are likely to find in a newspaper or magazine, although Savant can also resort to "trial and error" if presented with something really pathologically nasty. (This will at least confirm that the puzzles solution is unique.)
You may also parameterise or turn off the more advanced strategies, to see whether they were really needed.
Finally, Sudoku Savant lets you solve the puzzle by hand, providing hints, cell colouring, up to 4 pencil marks per cell, and the ability to high-light any incorrect moves. A partially completed puzzle can be saved in a simple text format so that you can continue solving it later.
Download (0.14MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1197 downloads
Puzzled 1.3
Puzzled project is a program which helps you solve complex grid-type logic problems. more>>
Puzzled project is a program which helps you solve complex grid-type logic problems.
Puzzled is a program which will ultimately help you solve complex grid-type logic problems by understanding pseudo-English translations of the clues provided with the problem.
It can automatically reassess clues containing comparative information (or, more than, less than, next to), and it has the persistent software preferences characteristic.
It comes with a pseudo-English language parser which supports the following relationships: is, is not, more than, less than, next to, not next to, and, or, and shorthand equivalents.
Main features:
- Possibility to open and save problem files
- Automatic reassessment of clues containing comparative information (or, more than, less than, next to)
- Persistent software preferences
- Positionable toolbar
- Pseudo-english language parser supports the following relationships: is, is not, more than, less than, next to, not next to, and, or and their shorthand equivalent (=, !=, >,<<less
Puzzled is a program which will ultimately help you solve complex grid-type logic problems by understanding pseudo-English translations of the clues provided with the problem.
It can automatically reassess clues containing comparative information (or, more than, less than, next to), and it has the persistent software preferences characteristic.
It comes with a pseudo-English language parser which supports the following relationships: is, is not, more than, less than, next to, not next to, and, or, and shorthand equivalents.
Main features:
- Possibility to open and save problem files
- Automatic reassessment of clues containing comparative information (or, more than, less than, next to)
- Persistent software preferences
- Positionable toolbar
- Pseudo-english language parser supports the following relationships: is, is not, more than, less than, next to, not next to, and, or and their shorthand equivalent (=, !=, >,<<less
Download (0.11MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1107 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
PPTools 1.0
PPTools contains several tools designed to ease the life of people working in the Pulsed Power field. more>>
PPTools contains several tools designed to ease the life of people working in the Pulsed Power field. It can also be useful for people working in electronics.
PPTools contains an RLC circuit solver, a resistor color coding solver, a liquid resistor solver, an inductance calculator, and a skin depth effect calculator. It should greatly help when doing quick calculations for the design of experiments, or when analyzing experimental results.
Main features:
- Solving of RLC circuit: give all parameters but two, solve the two unknowns!
- Resistors color coding: enter the color code, read the resistance value! Or enter the resistance you need, then read the closest color code!
- Liquid resistors solver: give all parameters but one, solve the unknown!
- Inductances calculator: select the geometry, enter the parameters, then read the associated inductance and capacitance! (flux leakage coefficients included, according to Knoepfel calculations)
- Skin depth calculator: select the applied signal shape, select the electrodes materials, give all parameters but one, solve the unknown!
- Help window describing all the features and giving details about the calculations (in About tab).
Enhancements:
- The liquid resistors calculator now gives correct answers and more solutions are available.
- The resistor color code solver has been almost totally rewritten and is now much more accurate and smart.
- The inductance/capacitance calculator was previously wrong for some capacitance calculations; now it is either correct (and proven) or a warning is displayed.
- The documentation has also been updated.
<<lessPPTools contains an RLC circuit solver, a resistor color coding solver, a liquid resistor solver, an inductance calculator, and a skin depth effect calculator. It should greatly help when doing quick calculations for the design of experiments, or when analyzing experimental results.
Main features:
- Solving of RLC circuit: give all parameters but two, solve the two unknowns!
- Resistors color coding: enter the color code, read the resistance value! Or enter the resistance you need, then read the closest color code!
- Liquid resistors solver: give all parameters but one, solve the unknown!
- Inductances calculator: select the geometry, enter the parameters, then read the associated inductance and capacitance! (flux leakage coefficients included, according to Knoepfel calculations)
- Skin depth calculator: select the applied signal shape, select the electrodes materials, give all parameters but one, solve the unknown!
- Help window describing all the features and giving details about the calculations (in About tab).
Enhancements:
- The liquid resistors calculator now gives correct answers and more solutions are available.
- The resistor color code solver has been almost totally rewritten and is now much more accurate and smart.
- The inductance/capacitance calculator was previously wrong for some capacitance calculations; now it is either correct (and proven) or a warning is displayed.
- The documentation has also been updated.
Download (0.29MB)
Added: 2006-04-05 License: GPL (GNU General Public License) Price:
741 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
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 solve 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