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 49.601.658 Times

Index Calculus Algorithm freeware
Filter: All | Freeware | Demo
 

Index Calculus Algorithm

< 1 2 3 4 5 > 
Added: February 27, 2010 | Visits: 910

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

Added: February 09, 2010 | Visits: 894

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: July 07, 2010 | Visits: 1.316

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: 872

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: September 29, 2013 | Visits: 932

Genetic Algorithm File Fitter Genetic Algorithm File Fitter, or just GAFFitter, is a command-line software written in C++ that arranges--via a genetic algorithm--an input list of items or files/directories into volumes of a certain capacity (target), such as CD or DVD, in a way that the total wastage is minimized. By smartly...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (122): Genetic Algorithm File Fitter Download

Added: October 08, 2010 | Visits: 1.253

Optimization Algorithm Toolkit Optimization Algorithm Toolkit is a workbench and toolkit for developing, evaluating, and playing with classical and state-of-the-art optimization algorithms on standard benchmark problem domains; including reference algorithm implementations, graphing, visualizations and much more. The project...


Platforms: *nix

License: Freeware Size: 6.5 MB Download (119): Optimization Algorithm Toolkit Download

Added: February 03, 2010 | Visits: 838

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 18, 2010 | Visits: 1.056

Algorithm::Dependency Algorithm::Dependency is a base class for implementing various dependency trees. SYNOPSIS use Algorithm::Dependency; use Algorithm::Dependency::Source::File; # Load the data from a simple text file my $data_source = Algorithm::Dependency::Source::File->new( foo.txt ); # Create the...


Platforms: *nix

License: Freeware Size: 46.08 KB Download (115): Algorithm::Dependency Download

Added: June 22, 2010 | Visits: 1.722

ruby index/search ruby index/search is a general indexing framework for ruby. With it, you can create collections of documents, then index and search them. Currently, both inverted indexing and LSA indexing are supported, with rudimentary result clustering in the works. The indices may be marshalled out (with...


Platforms: *nix

License: Freeware Size: 54.27 KB Download (114): ruby index/search Download

Added: May 02, 2010 | Visits: 1.055

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

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

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: April 09, 2010 | Visits: 1.024

Algorithm::Loops Algorithm::Loops is a Perl module with looping constructs: NestedLoops, MapCar*, Filter, and NextPermute*. SYNOPSYS use Algorithm::Loops qw( Filter MapCar MapCarU MapCarE MapCarMin NextPermute NextPermuteNum NestedLoops ); my @copy= Filter {tr/A-Z.,"()/a-z/d} @list; my $string= Filter...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (108): Algorithm::Loops Download

Added: January 22, 2010 | Visits: 1.943

SVN::Log::Index SVN::Log::Index is a Perl module that can index and search over Subversion commit logs. SYNOPSIS my $index = SVN::Log::Index->new({ index_path => /path/to/index }); if($creating) { # Create from scratch if necessary $index->create({ repo_url => url://for/repo }); } $index->open(); # And...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (108): SVN::Log::Index Download

Added: February 01, 2010 | Visits: 1.221

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: July 09, 2010 | Visits: 904

Algorithm::Huffman Algorithm::Huffman is a Perl extension that implements the Huffman algorithm. SYNOPSIS use Algorithm::Huffman; my %char_counting = map {$_ => int rand(100)} (a .. z, A .. Z); # or better the real counting for your characters # as the huffman algorithm doesnt work good with random data...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (104): Algorithm::Huffman Download

Added: July 09, 2010 | Visits: 961

Algorithm::SocialNetwork Algorithm::SocialNetwork is a social network analysis. SYNOPSIS use Graph::Undirected; use Algorithm::SocialNetwork; my $G = Graph::Undirected->new(); $G->add_edges([qw(a b)], [qw(b c)]); my $algo = Algorithm::SocialNetwork->new(graph => $G3); my $BC = $algo->BetweenessCentrality(); #...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (104): Algorithm::SocialNetwork Download

Added: April 25, 2010 | Visits: 930

Algorithm::Permute Algorithm::Permute is a Perl module with handy and fast permutation with object oriented interface. SYNOPSIS use Algorithm::Permute; my $p = new Algorithm::Permute([a..d]); while (@res = $p->next) { print join(", ", @res), "n"; } my @array = (1..9); Algorithm::Permute::permute { print...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (102): Algorithm::Permute Download

Added: January 17, 2010 | Visits: 1.035

Algorithm::BinPack Algorithm::BinPack is a Perl module that can efficiently pack items into bins. SYNOPSIS Algorithm::BinPack efficiently packs items into bins. The bins are given a maximum size, and items are packed in with as little empty space as possible. An example use would be backing up files to CD,...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (101): Algorithm::BinPack Download

Added: February 19, 2010 | Visits: 872

Algorithm::SISort Algorithm::SISort is a Perl module that contains select and insert sorting algorithm. SYNOPSIS use Algorithm::SISort qw(Sort Sort_inplace); @sorted_list = Sort {$_[0] <=> $_[1]} @unsorted_list; # ... or ... $number_of_comparisons = Sort_inplace {$_[0] <=> $_[1]} @unsorted_list; This...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (100): Algorithm::SISort Download

Added: November 04, 2010 | Visits: 931

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

< 1 2 3 4 5 >