File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/complex Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818
1919'use strict' ;
2020
21+ // MODULES //
22+
23+ var Complex128 = require ( '@stdlib/complex/float64' ) ;
24+ var Complex64 = require ( '@stdlib/complex/float32' ) ;
25+
26+
2127// MAIN //
2228
2329var CTORS = {
24- 'float64' : require ( '@stdlib/complex/float64' ) ,
25- 'float32' : require ( '@stdlib/complex/float32' )
30+ 'float64' : Complex128 ,
31+ 'float32' : Complex64
2632} ;
2733
2834
Original file line number Diff line number Diff line change 1818
1919'use strict' ;
2020
21+ // MODULES //
22+
23+ var Complex128 = require ( '@stdlib/complex/float64' ) ;
24+ var Complex64 = require ( '@stdlib/complex/float32' ) ;
25+
26+
2127// MAIN //
2228
2329var ctors = {
24- 'Complex128' : require ( '@stdlib/complex/float64' ) ,
25- 'Complex64' : require ( '@stdlib/complex/float32' )
30+ 'Complex128' : Complex128 ,
31+ 'Complex64' : Complex64
2632} ;
2733
2834
You can’t perform that action at this time.
0 commit comments