From 5bd801fd2c0b23adeb2bbb834df23ce74301cc43 Mon Sep 17 00:00:00 2001 From: Dave Lines Date: Tue, 22 Oct 2019 16:20:35 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 53b3e5b..95722f4 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# minimize [![Python 3.6+](https://img.shields.io/badge/python-3.6+-blue.svg)](https://www.python.org/downloads/release/python-360/) +# minimize [![Python 3.5+](https://img.shields.io/badge/python-3.5+-blue.svg)](https://www.python.org/downloads/release/python-360/) This repository is a Python implementation of C.E. Rasmussen's [minimize](http://learning.eng.cam.ac.uk/carl/code/minimize/) function which finds a (local) minimum of a (nonlinear) multivariate function. The function uses conjugate gradients and approximate linesearches based on polynomial interpolation with Wolfe-Powel conditions. The user supplies a function which returns the function value as well as the partial derivatives with respect to the variables to be minimized. Notes: -- Tested for python >= 3.6 +- Tested for python >= 3.5 **Table of Contents:** 1. [minimize usage](#minimize-usage)