AI-Genetic-Pro
view release on metacpan or search on metacpan
"signoff" : 0
},
"Dist::Zilla::Role::Git::DirtyFiles" : {
"allow_dirty" : [
"Changes",
"dist.ini"
],
"allow_dirty_match" : [
"(?^u:.*(?:\\.pm|README|\\*.t)$)"
],
"changelog" : "Changes"
},
"Dist::Zilla::Role::Git::Repo" : {
"git_version" : "2.30.2",
"repo_root" : "."
},
"Dist::Zilla::Role::Git::StringFormatter" : {
"time_zone" : "local"
}
},
"name" : "Git::Commit",
Dist::Zilla::Plugin::Git::Commit:
add_files_in: []
commit_msg: 'Release v%v%n%n%c'
signoff: 0
Dist::Zilla::Role::Git::DirtyFiles:
allow_dirty:
- Changes
- dist.ini
allow_dirty_match:
- (?^u:.*(?:\.pm|README|\*.t)$)
changelog: Changes
Dist::Zilla::Role::Git::Repo:
git_version: 2.30.2
repo_root: .
Dist::Zilla::Role::Git::StringFormatter:
time_zone: local
name: Git::Commit
version: '2.047'
-
class: Dist::Zilla::Plugin::Git::Push
config:
Width of a chart (default: 640).
-height
Height of a chart (default: 480).
-font
Path to font (in *.ttf format) to be used (default: none).
-logo
Path to logo (png/jpg image) to embed in a chart (default: none).
For example:
$ga->chart(-width => 480, height => 320, -filename => 'chart.png');
$ga->save($file)
Save the current state of the genetic algorithm to the specified
file.
Class::Accessor::Fast::XS = 0
Storable = 2.05
GD::Graph::linespoints = 1.54
MCE = 1.874
MCE::Map = 1.874
[GithubMeta]
remote = d-strzelec
[Git::Commit]
changelog = Changes
commit_msg = Release v%v%n%n%c
allow_dirty_match = .*(?:\.pm|README|\*.t)$
[Git::Push]
push_to = d-strzelec
[TestRelease]
[ConfirmRelease]
[UploadToCPAN]
;[FakeRelease]
lib/AI/Genetic/Pro.pm view on Meta::CPAN
b_margin => 10,
r_margin => 10,
t_margin => 10,
show_values => (defined $params{-show_values} ? 1 : 0),
values_vertical => 1,
values_format => ($params{-format} || '%.2f'),
zero_axis => 1,
#interlaced => 1,
logo_position => 'BR',
legend_placement => 'RT',
bgclr => 'white',
boxclr => '#FFFFAA',
transparent => 0,
title => ($params{'-title'} || q/Evolution/ ),
x_label => ($params{'-x_label'} || q/Generation/),
y_label => ($params{'-y_label'} || q/Value/ ),
( $params{-logo} && -f $params{-logo} ? ( logo => $params{-logo} ) : ( ) )
);
my $gd = $graph->plot( [ [ 0..$#{$data->[0]} ], @$data ] ) or croak($@);
open(my $fh, '>', $params{-filename}) or croak($@);
binmode $fh;
print $fh $gd->png;
close $fh;
return 1;
lib/AI/Genetic/Pro.pm view on Meta::CPAN
Width of a chart (default: I<640>).
=item -height
Height of a chart (default: I<480>).
=item -font
Path to font (in *.ttf format) to be used (default: none).
=item -logo
Path to logo (png/jpg image) to embed in a chart (default: none).
=item For example:
$ga->chart(-width => 480, height => 320, -filename => 'chart.png');
=back
=item I<$ga>-E<gt>B<save>($file)
Save the current state of the genetic algorithm to the specified file.
( run in 1.112 second using v1.01-cache-2.11-cpan-49f99fa48dc )