There was an error while loading. Please reload this page.
1 parent b7488b2 commit 952b5b7Copy full SHA for 952b5b7
.gitignore
@@ -1,2 +1,3 @@
1
doc
2
pkg
3
+*~
History.txt
@@ -1,3 +1,6 @@
+=== 0.2.0 / 2010-04-15
+* New Minimization::NewtonRahpson class, which implements a naive Newton-Rahpson minimization method
+ x=x_n-(f'(x)/f''(x))
4
=== 0.1.1 / 2010-03-19
5
6
* New Minimization#minimize convenience method
lib/minimization.rb
@@ -19,7 +19,7 @@
19
require 'text-table'
20
# Algorithms for unidimensional minimization
21
module Minimization
22
- VERSION="0.3.0"
+ VERSION="0.2.0"
23
FailedIteration=Class.new(Exception)
24
# Base class for unidimensional minimizers
25
class Unidimensional
0 commit comments