Name
Algorithm::Simplex::Role::Solve - solve() method implemented as Moose role.
Synposis
use Algorithm::Simplex::Float;
use Data::Dumper;
my $matrix = [ [ 1, 3, 2, 10 ], [ 2, 1, 1, 8 ], [ 3, 2, 4, 0 ] ];
my $tableau = Algorithm::Simplex::Float->new( tableau => $matrix );
my $final_tableau = $tableau->solve;
print Dumper $final_tableau->tableau . "\n";