Skip to content

Commit

Permalink
add license notice
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Jul 22, 2010
1 parent 8341e90 commit 34112ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README
Expand Up @@ -3,3 +3,5 @@ natural way.

Please see http://perlgeek.de/blog-en/perl-6/physical-modelling.html for a
longer description and tutorial.

This module may be used under the terms of the Artistic License 2.0
3 changes: 1 addition & 2 deletions examples/vertical-throw.pl
Expand Up @@ -3,7 +3,6 @@

use Math::Model;


my $m = Math::Model.new(
derivatives => {
y_velocity => 'y',
Expand All @@ -18,7 +17,7 @@
y => 0, # m
y_velocity => 20, # m/s
},
captures => <y y_velocity>,
captures => ('y', 'y_velocity'),
);

$m.integrate(:from(0), :to(4.2), :min-resolution(0.2));
Expand Down

0 comments on commit 34112ac

Please sign in to comment.