to solve
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 435
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
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
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
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
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
JOLIE 0.9.2
JOLIE is an interpreter for a new high level programming language. more>>
JOLIE is an interpreter for a new high level programming language, designed for SOAs (Service Oriented Architecture) orchestration (as, for example, WSBPEL by OASIS).
The whole program is written entirely in Java to ensure cross-platform capabilities, following strictly an object-oriented development method focused on components reusability and virtualization.
Where does JOLIE come from?
JOLIE was born as a project for a thesis in computer science at the University of Bologna, Italy. The project is based upon a theoretical calculus equipped with semantics (named SOCK), developed in the same university.
Why JOLIE?
Service Oriented Architectures (SOA) may be really difficult to orchestrate and they imply a lot of problematics about connectivity, loosely coupling, parallel execution and so on. JOLIE is an attempt to solve all these issues, providing an easy to use language which abstracts from them all.
Enhancements:
- A new heuristic for improving incoming communication handling performance has been introduced.
- Lot of bug fixes and performance improvements in the session execution engine.
- Request-Response operations must now declare their throwable fault names.
<<lessThe whole program is written entirely in Java to ensure cross-platform capabilities, following strictly an object-oriented development method focused on components reusability and virtualization.
Where does JOLIE come from?
JOLIE was born as a project for a thesis in computer science at the University of Bologna, Italy. The project is based upon a theoretical calculus equipped with semantics (named SOCK), developed in the same university.
Why JOLIE?
Service Oriented Architectures (SOA) may be really difficult to orchestrate and they imply a lot of problematics about connectivity, loosely coupling, parallel execution and so on. JOLIE is an attempt to solve all these issues, providing an easy to use language which abstracts from them all.
Enhancements:
- A new heuristic for improving incoming communication handling performance has been introduced.
- Lot of bug fixes and performance improvements in the session execution engine.
- Request-Response operations must now declare their throwable fault names.
Download (0.23MB)
Added: 2007-06-28 License: LGPL (GNU Lesser General Public License) Price:
850 downloads
XLightOff 1.1
XLightOff project is a X game which is easy to play, harder to solve. more>>
XLightOff project is a X game which is easy to play, harder to solve.
Easy to get in hands, not so easy to solve.
Installation - usage
Once downloaded, simply unzip/untar the archive, go into the created directory, and run "make".
It should produce a "xlightoff" file.
Then, simply run "./xlightoff" and there you are.
It must be played with the mouse.
Of course, you must run an X server to get something. It should be easy to use.
<<lessEasy to get in hands, not so easy to solve.
Installation - usage
Once downloaded, simply unzip/untar the archive, go into the created directory, and run "make".
It should produce a "xlightoff" file.
Then, simply run "./xlightoff" and there you are.
It must be played with the mouse.
Of course, you must run an X server to get something. It should be easy to use.
Download (0.013MB)
Added: 2006-11-16 License: Public Domain Price:
1072 downloads
Math::ODE 0.03
Math::ODE Perl module allows you to solve N-th Order Ordinary Differential Equations with as little pain as possible. more>>
Math::ODE Perl module allows you to solve N-th Order Ordinary Differential Equations with as little pain as possible.
Currently, only IVPs (initial value problems) are supported, but native support for BVPs (boundary value problems) may be added in the future. To solve N-th order equations, you must first turn it into a system of N first order equations, as in MATLAB.
<<lessCurrently, only IVPs (initial value problems) are supported, but native support for BVPs (boundary value problems) may be added in the future. To solve N-th order equations, you must first turn it into a system of N first order equations, as in MATLAB.
Download (0.005MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
867 downloads
KMathsTest 0.2
KMathsTest is a program who randomly generates maths questions for you to answer. more>>
KMathsTest is a program who randomly generates maths questions for you to answer.
Equations: dont you just love them? Well, youll find as many as you like in KMathsTest, which will generate random arithmetic sums, linear or simultaneous equations for your solving delight.
OK, so maybe you dont delight in it, but if you have a maths exam coming up, this is essential stuff, and therefore, this is essential software to make sure youve learnt it! KMathsTest has the interface of a KDE application.
This program randomly generates maths questions for you to answer. It keeps a basic log of your scores and allows you to change the minimum and maximum values for the numbers.
Currently, these questions are available:
- Addition;
- Subtraction;
- Multiplication;
- Division;
- Linear equations;
- Simultaneous equations.
Explanations are also provided on how to solve individual linear equations.
<<lessEquations: dont you just love them? Well, youll find as many as you like in KMathsTest, which will generate random arithmetic sums, linear or simultaneous equations for your solving delight.
OK, so maybe you dont delight in it, but if you have a maths exam coming up, this is essential stuff, and therefore, this is essential software to make sure youve learnt it! KMathsTest has the interface of a KDE application.
This program randomly generates maths questions for you to answer. It keeps a basic log of your scores and allows you to change the minimum and maximum values for the numbers.
Currently, these questions are available:
- Addition;
- Subtraction;
- Multiplication;
- Division;
- Linear equations;
- Simultaneous equations.
Explanations are also provided on how to solve individual linear equations.
Download (0.21MB)
Added: 2005-06-01 License: GPL (GNU General Public License) Price:
1606 downloads
GLightOff 1.0.0
GLightOff is a simple (but not so easy to solve!) puzzle game. more>>
GLightOff is a simple (but not so easy to solve!) puzzle game. The goal is to switch off all the lights on the 5x5 board.
Enhancements:
- Finally 1.0.0 now that GTK+-2.6 is out.
- This new release features misc bugfixes and the ability to play the game with the keyboard.
<<lessEnhancements:
- Finally 1.0.0 now that GTK+-2.6 is out.
- This new release features misc bugfixes and the ability to play the game with the keyboard.
Download (0.34MB)
Added: 2005-07-22 License: GPL (GNU General Public License) Price:
1555 downloads
Crossword 0.1.0
Crossword allows you to try to solve crossword puzzles. more>>
Crossword allows you to try to solve crossword puzzles.
Crossword is a GNOME game that draws a crossword grid and clues for you to solve based on a configuration file.
It also has an editor to let you easily create puzzles.
Enhancements:
- Initial release! :)
- Currently can draw the board and the clues
- The interface needs a lot of work
- The editor has hardly been started, and is not usable
- The file format has been mostly finalized, so you can create files with a hex editor (not a text editor)
<<lessCrossword is a GNOME game that draws a crossword grid and clues for you to solve based on a configuration file.
It also has an editor to let you easily create puzzles.
Enhancements:
- Initial release! :)
- Currently can draw the board and the clues
- The interface needs a lot of work
- The editor has hardly been started, and is not usable
- The file format has been mostly finalized, so you can create files with a hex editor (not a text editor)
Download (0.12MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1067 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
Simple Log 2.0.1
Simple Log is a small library that does logging very simply. more>>
Simple Log is a small library that does logging very simply and requires you to do almost nothing (other than actually logging) to get log output to happen. Simple Log is much simpler to use than a logging framework, especially in terms of configuration.
It doesnt attempt to solve every logging problem in one package, but contains enough features to be a viable alternative for most applications that need logging. This tool will handle the logging needs of most small- to large-sized projects, but with an almost non-existent learning curve.
Enhancements:
- This release is primarily about the addition of log rolling (by time of day, file size, or custom strategy), the inclusion of a small but humorous user guide, the fixing of a raft of minor bugs, and the inclusion of a few other small features increasing flexibility.
<<lessIt doesnt attempt to solve every logging problem in one package, but contains enough features to be a viable alternative for most applications that need logging. This tool will handle the logging needs of most small- to large-sized projects, but with an almost non-existent learning curve.
Enhancements:
- This release is primarily about the addition of log rolling (by time of day, file size, or custom strategy), the inclusion of a small but humorous user guide, the fixing of a raft of minor bugs, and the inclusion of a few other small features increasing flexibility.
Download (0.98MB)
Added: 2006-07-25 License: The Apache License 2.0 Price:
1187 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 to 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