AI-SimulatedAnnealing
view release on metacpan or search on metacpan
lib/AI/SimulatedAnnealing.pm view on Meta::CPAN
# Copyright 2010 by Benjamin Fitch.
#
# This library is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
####
package AI::SimulatedAnnealing;
use 5.010001;
use strict;
use warnings;
use utf8;
use English "-no_match_vars";
use Hash::Util ("lock_keys");
use List::Util ("first", "max", "min", "sum");
use POSIX ("ceil", "floor");
use Scalar::Util ("looks_like_number");
use Exporter;
# Version:
t/annealing_tests.t view on Meta::CPAN
####
# annealing_tests.t: Test the AI::SimulatedAnnealing module.
#
# Usage:
#
# perl -w annealing_tests.t market_distances.csv
####
use 5.010001;
use strict;
use warnings;
use utf8;
use English "-no_match_vars";
use List::Util ("max", "min");
use AI::SimulatedAnnealing;
use Text::BSV::BsvFileReader;
# Probability enumeration:
package Probability;
( run in 0.683 second using v1.01-cache-2.11-cpan-49f99fa48dc )