remove node_modules and .gitignore them

This commit is contained in:
2023-11-24 14:40:32 -05:00
parent 5f6e638903
commit a74d7b91b8
8963 changed files with 1 additions and 874175 deletions
-43
View File
@@ -1,43 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Carlson = void 0;
//================================================================
/**
* @packageDocumentation
* @module std.internal
*/
//================================================================
var MathUtil_1 = require("./MathUtil");
var Carlson;
(function (Carlson) {
var INFINITY = 100 * 1000;
var SECTION = INFINITY;
function rf(x, y, z) {
return (MathUtil_1.MathUtil.integral(function (t) {
var ret = t + x;
ret *= t + y;
ret *= t + z;
return 1 / Math.sqrt(ret);
}, 0, INFINITY, SECTION) / 2);
}
Carlson.rf = rf;
function rj(x, y, z, p) {
return (MathUtil_1.MathUtil.integral(function (t) {
var ret = t + x;
ret *= t + y;
ret *= t + z;
ret = (t + p) * Math.sqrt(ret);
return 1 / ret;
}, 0, INFINITY, SECTION) * 1.5);
}
Carlson.rj = rj;
function rc(x, y) {
return rf(x, y, y);
}
Carlson.rc = rc;
function rd(x, y, z) {
return rj(x, y, z, z);
}
Carlson.rd = rd;
})(Carlson = exports.Carlson || (exports.Carlson = {}));
//# sourceMappingURL=Carlson.js.map