Skip to content

Commit e52c3cf

Browse files
committed
chore: add evalpoly.js
1 parent 7f2872a commit e52c3cf

File tree

1 file changed

+115
-0
lines changed
  • lib/node_modules/@stdlib/math/base/special/log10/scripts

1 file changed

+115
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2018 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
/*
20+
* This script compiles modules for evaluating polynomial functions. If any polynomial coefficients change, this script should be rerun to update the compiled files.
21+
*/
22+
'use strict';
23+
24+
// MODULES //
25+
26+
var resolve = require( 'path' ).resolve;
27+
var readFileSync = require( '@stdlib/fs/read-file' ).sync;
28+
var writeFileSync = require( '@stdlib/fs/write-file' ).sync;
29+
var substringBefore = require( '@stdlib/string/substring-before' );
30+
var substringAfter = require( '@stdlib/string/substring-after' );
31+
var format = require( '@stdlib/string/format' );
32+
var compileC = require( '@stdlib/math/base/tools/evalpoly-compile-c' );
33+
34+
35+
// VARIABLES //
36+
37+
// Polynomial coefficients ordered in ascending degree...
38+
var P = [
39+
3.999999999940941908e-01, // 3FD99999 9997FA04
40+
2.222219843214978396e-01, // 3FCC71C5 1D8E78AF
41+
1.531383769920937332e-01 // 3FC39A09 D078C69F
42+
];
43+
var Q = [
44+
6.666666666666735130e-01, // 3FE55555 55555593
45+
2.857142874366239149e-01, // 3FD24924 94229359
46+
1.818357216161805012e-01, // 3FC74664 96CB03DE
47+
1.479819860511658591e-01 // 3FC2F112 DF3E5244
48+
];
49+
50+
51+
// FUNCTIONS //
52+
53+
/**
54+
* Inserts a compiled function into file content.
55+
*
56+
* @private
57+
* @param {string} text - source content
58+
* @param {string} id - function identifier
59+
* @param {string} str - function string
60+
* @returns {string} updated content
61+
*/
62+
function insert( text, id, str ) {
63+
var before;
64+
var after;
65+
var begin;
66+
var end;
67+
68+
begin = '// BEGIN: '+id;
69+
end = '// END: '+id;
70+
71+
before = substringBefore( text, begin );
72+
after = substringAfter( text, end );
73+
74+
return format( '%s// BEGIN: %s\n\n%s\n%s%s', before, id, str, end, after );
75+
}
76+
77+
78+
// MAIN //
79+
80+
/**
81+
* Main execution sequence.
82+
*
83+
* @private
84+
*/
85+
function main() {
86+
var fpath;
87+
var copts;
88+
var opts;
89+
var file;
90+
var str;
91+
92+
opts = {
93+
'encoding': 'utf8'
94+
};
95+
96+
copts = {
97+
'dtype': 'double',
98+
'name': ''
99+
};
100+
101+
fpath = resolve( __dirname, '..', 'src', 'main.c' );
102+
file = readFileSync( fpath, opts );
103+
104+
copts.name = 'polyval_p';
105+
str = compileC( P, copts );
106+
file = insert( file, copts.name, str );
107+
108+
copts.name = 'polyval_q';
109+
str = compileC( Q, copts );
110+
file = insert( file, copts.name, str );
111+
112+
writeFileSync( fpath, file, opts );
113+
}
114+
115+
main();

0 commit comments

Comments
 (0)