Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.204.685 Times

Domino Ai Algorithm software
Filter: All | Freeware | Demo
 

Domino Ai Algorithm

< 1 2 3 4 5 > 
Added: March 22, 2010 | Visits: 1.348

Domino blue glass Domino blue glass is a glass-like darkblue scheme for the Domino KDE-style. Its my first style Ive made, so I hope you like it.. Domino blue glass KDE-Look.org Community Portal for KDE Themes Wallpapers Icons Sounds Screenshots Schemes Skins Skinz Screensavers Splash Screens K-Jofol IceWM...



Platforms: *nix

License: Freeware Download (129): Domino blue glass Download

Added: October 05, 2010 | Visits: 805

Algorithm::SixDegrees Algorithm::SixDegrees is a Perl module that can find a path through linked elements in a set. SYNOPSIS use Algorithm::SixDegrees; my $sd1 = Algorithm::SixDegrees->new(); $sd1->data_source( actors => &starred_in ); $sd1->data_source( movies => &stars_of ); @elems = $sd1->make_link(actors,...





Platforms: *nix

License: Freeware Size: 11.26 KB Download (94): Algorithm::SixDegrees Download

Added: June 03, 2010 | Visits: 2.259

AI::ExpertSystem::Simple AI::ExpertSystem::Simple is a simple expert system shell. SYNOPSIS This class implements a simple expert system shell that reads the rules from an XML knowledge base and questions the user as it attempts to arrive at a conclusion. This class is where all the work is being done and the other...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (605): AI::ExpertSystem::Simple Download

Added: July 07, 2010 | Visits: 1.320

Algorithm::Line::Bresenham Algorithm::Line::Bresenham is a Perl module that contains a simple pixellated line-drawing algorithm. SYNOPSIS use Algorithm::Line::Bresenham qw/line/; my @points = line(3,3 => 5,0); # returns the list: [3,3], [4,2], [4,1], [5,0] line(3,3 => 5,0, &draw_line); # calls draw_line on each...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (134): Algorithm::Line::Bresenham Download

Added: October 15, 2010 | Visits: 876

Algorithm::C3 Algorithm::C3 is a module for merging hierarchies using the C3 algorithm. SYNOPSIS use Algorithm::C3; # merging a classic diamond # inheritence graph like this: # # # / # # / # my @merged = Algorithm::C3::merge( D, sub { # extract the ISA array # from the package no...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (130): Algorithm::C3 Download

Added: August 01, 2010 | Visits: 943

Citrus-Domino Citrus-Domino is a KDE theme based on the popular Domino style, composed by an emerald theme, a color scheme, and a screenshot.. Citrus-Domino KDE-Look.org Community Portal for KDE Themes Wallpapers Icons Sounds Screenshots Schemes Skins Skinz Screensavers Splash Screens K-Jofol IceWM Kaiman News...


Platforms: *nix

License: Freeware Download (93): Citrus-Domino Download

Released: July 10, 2012  |  Added: July 10, 2012 | Visits: 1.440

Algorithm::Pair::Best Algorithm::Pair::Best is a Perl module to select pairings (designed for Go tournaments, but can be used for anything, really). SYNOPSIS use Algorithm::Pair::Best; my $pair = Algorithm::Pair::Best->new( ? options ? ); $pair->add( item, ? item, ... ? ); @pairList = $pair->pick( ? $window...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (112): Algorithm::Pair::Best Download

Added: February 03, 2010 | Visits: 846

Algorithm::SkipList Algorithm::SkipList is a Perl implementation of skip lists. SYNOPSIS my $list = new Algorithm::SkipList(); $list->insert( key1, value ); $list->insert( key2, another value ); $value = $list->find(key2); $list->delete(key1); This is an implementation of skip lists in Perl. Skip...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (117): Algorithm::SkipList Download

Added: January 01, 2010 | Visits: 928

Algorithm::ScheduledPath Algorithm::ScheduledPath is a Perl module that helps you to find scheduled paths in a directed graph. SYNOPSIS use Algorithm::ScheduledPath; use Algorithm::ScheduledPath::Path; $graph = new Algorithm::ScheduledPath(); $graph->add_edge( { path_id => R, origin => A, depart_time => 1,...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (90): Algorithm::ScheduledPath Download

Added: April 12, 2010 | Visits: 949

AI::FuzzyLogic AI::FuzzyLogic is a Perl module for Fuzzy Set Operations and Tools. SYNOPSIS use AI::FuzzyLogic; $i = new AI::FuzzyLogic $unittype, @numbers; # new set with one subset $i = new AI::FuzzyLogic age, 0, 0.1, 0.2, 0.1, 0; # same thing $i = new AI::FuzzyLogic $subset1, $subset2, $subset3; #...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (94): AI::FuzzyLogic Download

Added: November 04, 2010 | Visits: 941

Algorithm::Munkres Algorithm::Munkres is a Perl extension for Munkres solution to classical Assignment problem for square and rectangular matrices. This module extends the solution of Assignment problem for square matrices to rectangular matrices by padding zeros. Thus a rectangular matrix is converted to square...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (100): Algorithm::Munkres Download

Added: March 20, 2010 | Visits: 2.257

Algorithm::LUHN Algorithm::LUHN is a Perl module to calculate the modulus 10 double add double checksum. SYNOPSIS use Algorithm::LUHN qw/check_digit is_valid/; $c = check_digit("43881234567"); print "It worksn" if is_valid("43881234567$c"); $c = check_digit("A2C4E6G8"); # this will cause an error...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (510): Algorithm::LUHN Download

Added: May 02, 2010 | Visits: 1.059

Algorithm::AhoCorasick::SearchMachine Algorithm::AhoCorasick::SearchMachine provides an implementation and low-level interface of Algorithm::AhoCorasick. Feeds input to the state machine. First (after the instance) argument of this method is the input text (which can be empty, in which case the method doesnt do anything), second...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (114): Algorithm::AhoCorasick::SearchMachine Download

Added: February 09, 2010 | Visits: 898

Algorithm::AhoCorasick Algorithm::AhoCorasick provides efficient search for multiple strings. Aho-Corasick is a classic (1975) algorithm for locating elements of a finite set of strings within an input text. It constructs a finite state machine from a list of keywords, then uses the machine to locate all occurrences...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (143): Algorithm::AhoCorasick Download

Added: February 01, 2010 | Visits: 1.226

Algorithm::NeedlemanWunsch Algorithm::NeedlemanWunsch is a sequence alignment with configurable scoring. SYNOPSIS use Algorithm::NeedlemanWunsch; sub score_sub { if (!@_) { return -2; # gap penalty } return ($_[0] eq $_[1]) ? 1 : -1; } my $matcher = Algorithm::NeedlemanWunsch->new(&score_sub); my $score =...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (105): Algorithm::NeedlemanWunsch Download

Added: October 24, 2010 | Visits: 1.260

Domino Blue Domino Blue Milk is a Domino config file that looks like MacOS Xs Milk with a blue touch. Started from Polyester-Blue color profile, transformed it to a murrina-domino config and then customized to add brightness to buttons, scrollbars and checkboxes.. Domino Blue Milk KDE-Look.org Community...


Platforms: *nix

License: Freeware Download (99): Domino Blue Download

Added: August 27, 2010 | Visits: 1.013

Domino for openSUSE Domino theme compiled for openSUSE and related reptiles. For the original sources and screenshots go to http://www.kde-look.org/content/show.php?content=42804. Domino for openSUSE KDE-Look.org Community Portal for KDE Themes Wallpapers Icons Sounds Screenshots Schemes Skins Skinz Screensavers...


Platforms: *nix

License: Freeware Download (98): Domino for openSUSE Download

Added: February 27, 2010 | Visits: 915

Algorithm::Combinatorics Algorithm::Combinatorics Perl module is an efficient generator of combinatorial sequences. SYNOPSIS use Algorithm::Combinatorics qw(permutations); my @data = qw(a b c); # scalar context gives an iterator my $iter = permutations(@data); while (my $p = $iter->next) { # ... } # list...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (153): Algorithm::Combinatorics Download

Released: July 29, 2009  |  Added: June 06, 2011 | Visits: 1.224

Domino Solitaire Domino Solitaire (DomiSol) is a puzzle where 28 dominoes are placed to form a rectangle but you do not see their bounds. Your goal is to find these bounds by grouping the domino halves into a correct domino set. A logic challenge. Each game has at least one solution, the game field can be...


Platforms: Windows

License: Freeware Size: 231 KB Download (107): Domino Solitaire Download

Released: July 19, 2012  |  Added: July 19, 2012 | Visits: 739

SentiSight algorithm demo (for Windows) Object recognition technology demo applications for Microsoft Windows. The technology supports webcams, surveillance cameras, media files with still images and video, and is able to perform real-time video stream processing. The recognition algorithm is tolerant to object scale, rotation, pose,...


Platforms: Windows

License: Shareware Cost: $479.00 USD Size: 10.57 MB Download (53): SentiSight algorithm demo (for Windows) Download

< 1 2 3 4 5 >