98 ///performs a linesearch on the objectiveFunction given the starting point, its value the newton direction and optionally the derivative at the starting point
99 ///@param searchPoint the point where the linesearch start
100 ///@param pointValue the value of the function at searchPoint
101 ///@param newtonDirection the search direction of the line search
102 ///@param derivative the derivative of the function at searchPoint
103 ///@param stepLength initial step length guess for guiding the line search