Skip to content

Commit 952b5b7

Browse files
committed
Correct version from 0.3.0 to 0.2.0
1 parent b7488b2 commit 952b5b7

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
doc
22
pkg
3+
*~

History.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
=== 0.2.0 / 2010-04-15
2+
* New Minimization::NewtonRahpson class, which implements a naive Newton-Rahpson minimization method
3+
x=x_n-(f'(x)/f''(x))
14
=== 0.1.1 / 2010-03-19
25

36
* New Minimization#minimize convenience method

lib/minimization.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
require 'text-table'
2020
# Algorithms for unidimensional minimization
2121
module Minimization
22-
VERSION="0.3.0"
22+
VERSION="0.2.0"
2323
FailedIteration=Class.new(Exception)
2424
# Base class for unidimensional minimizers
2525
class Unidimensional

0 commit comments

Comments
 (0)