- Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathroot.lua
More file actions
Latest commit
13 lines (11 loc) · 430 Bytes
/
Copy pathroot.lua
File metadata and controls
13 lines (11 loc) · 430 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
--------------------------------------------------------------------------------
-- Root finding module.
--
-- Copyright (C) 2011-2016 Stefano Peluchetti. All rights reserved.
--------------------------------------------------------------------------------
localnewtonm=require"sci.root._newtonm"
return {
newton=newtonm.newton,
halley=newtonm.halley,
ridders=require("sci.root._ridders").root,
}