forked from mauriciopoppe/interval-arithmetic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
39 lines (34 loc) · 863 Bytes
/
index.js
File metadata and controls
39 lines (34 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* interval-arithmetic
*
* Copyright (c) 2015 Mauricio Poppe
* Licensed under the MIT license.
*/
'use strict'
var extend = require('xtend/mutable')
require('./lib/polyfill')
module.exports = require('./lib/interval')
/**
* Use {@link Interval.round} instead
* @memberof Interval
* @name Interval.rmath
* @deprecated as of 0.6.4
*/
module.exports.rmath = require('./lib/round-math')
/**
* Link to {@link module:interval-arithmetic/round-math}
*
* @memberof Interval
* @name Interval.round
*/
module.exports.round = require('./lib/round-math')
extend(
module.exports,
require('./lib/constants'),
require('./lib/operations/relational'),
require('./lib/operations/arithmetic'),
require('./lib/operations/algebra'),
require('./lib/operations/trigonometric'),
require('./lib/operations/misc'),
require('./lib/operations/utils')
)