Main > Free Download Search >

Free can solve software for linux

can solve

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 380
Anagram Solver 0.1

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
<<less
Download (0.47MB)
Added: 2006-04-06 License: GPL (GNU General Public License) Price:
1306 downloads
LM-Solve 0.8.1

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

<<less
Download (0.020MB)
Added: 2006-12-21 License: Public Domain Price:
1038 downloads
Automagical Sudoku Solver 1.7

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)
<<less
Download (0.037MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
861 downloads
Math::Polynomial::Solve 2.11

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);

<<less
Download (0.015MB)
Added: 2007-07-19 License: Perl Artistic License Price:
832 downloads
SDL Vexed 0.6

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.

<<less
Download (0.51MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
1037 downloads
Games::LMSolve::Base 0.8.1

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.

<<less
Download (0.021MB)
Added: 2007-01-06 License: Perl Artistic License Price:
1021 downloads
Scavenger 1.4.4

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.
<<less
Download (0.18MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1137 downloads
mod_cband 0.9.7.5

mod_cband 0.9.7.5


mod_cband is an Apache 2 module that solves the problem of limiting users and virtual hosts bandwidth usage. more>>
mod_cband is an Apache 2 module provided to solve the problem of limiting users and virtualhosts bandwidth usage. When the configured virtualhosts transfer limit is exceeded, mod_cband will redirect all further requests to a location specified in the configuration file.
I advice for using mod_cband by hosting companies, which would like to limit data transfer for its users, such as "10 Gb of traffic per month".
There is already module mod_curb which can limit data transfer, but it doesnt work with virtualhosts and Apache 2, so I wrote my own module fully compatible with Apache 2 API and supporting per-users and per-virtualhosts bandwidth limiting.
Enhancements:
- Some memory leaks in scoreboard read/write operations and some HTML 4.0 Strict warnings were fixed.
- A truncf workaround for Solaris was added.
<<less
Download (0.069MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
650 downloads
Xokoban 1.0

Xokoban 1.0


Xokoban project is my (C++) sokoban game for X11. more>>
Xokoban project is my (C++) sokoban game for X11.
Main features:
- Undos right back to your first move
- Go to any level - you dont have to play them in order
- recording of solutions. If you solve a level or find a better solution, the new solution will be remembered
- can show the solution for any level, if one has been found
- a demo mode which shows all solutions or levels
- a nice-looking game board with a configurable color scheme, 4 are included.
<<less
Download (0.056MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
971 downloads
CSudoku 1.0

CSudoku 1.0


CSudoku is a command line Sudoku solving program. more>>
CSudoku is a command line Sudoku solving program. CSudoku project solves the popular 9x9 versions of Sudoku using Donald Knuths Dancing Links algorithm.

It was created as a fun exercise in computer programming and not necessarily to be a program useful to anyone in particular.

There are many other Sudoku solving programs that are more refined and have many more features than this program would ever dream of having.

Installation:

1. unpack csudoku-1.0.tar.gz
2. cd csudoku-1.0/src
3. run make

Usage:

To run the sudoku program you will first need to install it using the steps as outlined above. Now, assuming you are in the directory csduoku-1.0/src, invoke the command:

./sudoku < infile

where infile is an input file containing 1 or more 9x9 Sudokus. For the format of the infile you can check out the file top95. In fact you can use the top95 file to test the program. By invoking the command:

./sudoku < ../top95

you should see some input and output details and at the end under "Overall Statistics" it should read

...
95 out of 95 were valid
0 has no solution(s)
95 had unique solution(s)
0 had multiple solution(s)
...

If this was done successfully you can now use the program to solve whatever Sudoku puzzle is giving you trouble. Enjoy!
<<less
Download (0.025MB)
Added: 2006-05-31 License: GPL (GNU General Public License) Price:
1242 downloads
Einstein Puzzle 2.0

Einstein Puzzle 2.0


Einstein puzzle is a free cross-platform open source remake of old DOS game Sherlock. more>>
Einstein puzzle is a free cross-platform open source remake of old DOS game Sherlock which was inspired by Albert Einsteins puzzle.

Einstein said that only those with an intelligence quotient of 98 percentile and higher should be able to solve it.

The game goal is to open all cards in square of 6x6 cards. For this, a number of hints describing relations between card positions are given. Use them to find the correct layout.

Einstein 2.0 features sound support, full internalization, Russian localization, reengineered resource subsystem to allow custom graphics themes and in-game rules browser.

<<less
Download (0.70MB)
Added: 2005-10-19 License: GPL (GNU General Public License) Price:
1482 downloads
MediaSort 1.2

MediaSort 1.2


MediaSort is a tool that indexes, sorts, and renames media files such as pictures and MP3s. more>>
MediaSort is a tool that indexes, sorts, and renames media files such as pictures and MP3s based on any of their metadata attributes.
For example, you can sort your pictures by date, size, or other EXIF attributes, or MP3s by author, album, or other ID3 tag values. MediaSort is also a "sorting" Ant FileMapper that can be used with any other Ant tasks to achieve more complex work.
Enhancements:
- Solve major incompatibility with JDK 1.4
<<less
Download (2.4MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
884 downloads
Math::ODE 0.03

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.

<<less
Download (0.005MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
867 downloads
GNOME Maze 0.8

GNOME Maze 0.8


GNOME Maze project is a maze board game. more>>
GNOME Maze project is a maze board game.
The objective is to get the Tux out of the maze.
This release has different levels, and if you are unable to solve the maze, the computer can do it for you.
Enhancements:
- implemended levels,
- improved pad-history,
- pixmaps,
- computer-solving.
<<less
Download (0.12MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1035 downloads
KMathsTest 0.2

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.
<<less
Download (0.21MB)
Added: 2005-06-01 License: GPL (GNU General Public License) Price:
1606 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5