openchemlib 9.11.1 → 9.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/openchemlib.d.ts +66 -1
- package/dist/openchemlib.debug.js +103 -45
- package/dist/openchemlib.js +11 -11
- package/package.json +1 -1
package/dist/openchemlib.d.ts
CHANGED
|
@@ -3363,6 +3363,47 @@ export declare class SDFileParser {
|
|
|
3363
3363
|
getField(name: string): string;
|
|
3364
3364
|
}
|
|
3365
3365
|
|
|
3366
|
+
export interface SSSearcherOptions {
|
|
3367
|
+
/**
|
|
3368
|
+
* @default false
|
|
3369
|
+
*/
|
|
3370
|
+
matchAtomCharge?: boolean;
|
|
3371
|
+
/**
|
|
3372
|
+
* @default false
|
|
3373
|
+
*/
|
|
3374
|
+
matchAtomMass?: boolean;
|
|
3375
|
+
/**
|
|
3376
|
+
* @default false
|
|
3377
|
+
*/
|
|
3378
|
+
matchDBondToDelocalized?: boolean;
|
|
3379
|
+
/**
|
|
3380
|
+
* @default true
|
|
3381
|
+
*/
|
|
3382
|
+
matchAromDBondToDelocalized?: boolean;
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3385
|
+
export type SSSearcherCountMode =
|
|
3386
|
+
| 'existence'
|
|
3387
|
+
| 'firstMatch'
|
|
3388
|
+
| 'separated'
|
|
3389
|
+
| 'overlapping'
|
|
3390
|
+
| 'rigorous'
|
|
3391
|
+
| 'unique';
|
|
3392
|
+
|
|
3393
|
+
export interface SSSearcherFindFragmentInMoleculeOptions {
|
|
3394
|
+
/**
|
|
3395
|
+
* Count mode.
|
|
3396
|
+
* overlapping: create list not containing multiple matches sharing exactly the same atoms
|
|
3397
|
+
* existence: check only, don't create matchList
|
|
3398
|
+
* firstMatch: create matchList with just one match
|
|
3399
|
+
* separated: create list of all non-overlapping matches / not optimized for maximum match count
|
|
3400
|
+
* rigorous: create list of all possible matches neglecting any symmetries
|
|
3401
|
+
* unique: create list of all distinguishable matches considering symmetries
|
|
3402
|
+
* @default overlapping
|
|
3403
|
+
*/
|
|
3404
|
+
countMode: SSSearcherCountMode;
|
|
3405
|
+
}
|
|
3406
|
+
|
|
3366
3407
|
/**
|
|
3367
3408
|
* Basic substructure searcher.
|
|
3368
3409
|
*/
|
|
@@ -3370,7 +3411,7 @@ export declare class SSSearcher {
|
|
|
3370
3411
|
/**
|
|
3371
3412
|
* Creates a new substructure searcher.
|
|
3372
3413
|
*/
|
|
3373
|
-
constructor();
|
|
3414
|
+
constructor(options?: SSSearcherOptions);
|
|
3374
3415
|
|
|
3375
3416
|
/**
|
|
3376
3417
|
* Set the `fragment` to search.
|
|
@@ -3396,6 +3437,30 @@ export declare class SSSearcher {
|
|
|
3396
3437
|
* Returns whether the current fragment is in the target molecule.
|
|
3397
3438
|
*/
|
|
3398
3439
|
isFragmentInMolecule(): boolean;
|
|
3440
|
+
|
|
3441
|
+
/**
|
|
3442
|
+
* Locates all matches of the fragment in the molecule that result in distinguishable
|
|
3443
|
+
* sets of molecule atoms. Multiple matches involving the same atoms, e.g. with a benzene ring,
|
|
3444
|
+
* are counted and listed only once. If count mode is different from 'existence',
|
|
3445
|
+
* then an atom mapping from fragment to molecule is collected and can be retrieved with getMatchList().
|
|
3446
|
+
* @param options
|
|
3447
|
+
* @returns count of sub-structure matches of fragment in molecule
|
|
3448
|
+
*/
|
|
3449
|
+
findFragmentInMolecule(
|
|
3450
|
+
options?: SSSearcherFindFragmentInMoleculeOptions,
|
|
3451
|
+
): number;
|
|
3452
|
+
|
|
3453
|
+
/**
|
|
3454
|
+
* If the match count mode is one of 'firstMatch', 'overlapping',
|
|
3455
|
+
* 'rigorous' then this method returns an array of all counted matches,
|
|
3456
|
+
* i.e. int arrays mapping fragment atoms to molecule atoms. Atoms being part of a
|
|
3457
|
+
* matched bridge bond are naturally not covered by the mapping. Atoms being part of a
|
|
3458
|
+
* matching bridge bond are available with getBridgeBondAtomList().
|
|
3459
|
+
* Note: If some query fragment atoms are marked as exclude group, then the respective
|
|
3460
|
+
* matchlist values are -1.
|
|
3461
|
+
* @returns list of distinct counted matches.
|
|
3462
|
+
*/
|
|
3463
|
+
getMatchList(): number[][];
|
|
3399
3464
|
}
|
|
3400
3465
|
|
|
3401
3466
|
/**
|
|
@@ -14710,8 +14710,8 @@ function getExports($wnd) {
|
|
|
14710
14710
|
carc2.$clinit_Element$1 = function $clinit_Element$1() {
|
|
14711
14711
|
carc2.$clinit_Element$1 = emptyMethod;
|
|
14712
14712
|
};
|
|
14713
|
-
defineClass(
|
|
14714
|
-
cggl.Lcom_actelion_research_chem_Element$1_2_classLit = createForClass("com.actelion.research.chem", "Element/1",
|
|
14713
|
+
defineClass(811, 1, { 1: 1, 36: 1 });
|
|
14714
|
+
cggl.Lcom_actelion_research_chem_Element$1_2_classLit = createForClass("com.actelion.research.chem", "Element/1", 811, cggl.Ljava_lang_Object_2_classLit);
|
|
14715
14715
|
carc2.$clinit_ExtendedDepictor = function $clinit_ExtendedDepictor() {
|
|
14716
14716
|
carc2.$clinit_ExtendedDepictor = emptyMethod;
|
|
14717
14717
|
jl.$clinit_Object();
|
|
@@ -24284,7 +24284,7 @@ function getExports($wnd) {
|
|
|
24284
24284
|
}
|
|
24285
24285
|
return carc2.tbl;
|
|
24286
24286
|
};
|
|
24287
|
-
defineClass(
|
|
24287
|
+
defineClass(494, 1, { 1: 1 }, carc2.PeriodicTable);
|
|
24288
24288
|
_.$init_41 = function $init_41() {
|
|
24289
24289
|
};
|
|
24290
24290
|
_.toString_0 = function toString_10() {
|
|
@@ -24305,7 +24305,7 @@ function getExports($wnd) {
|
|
|
24305
24305
|
carc2.Silicon = 14;
|
|
24306
24306
|
carc2.Sulfur = 16;
|
|
24307
24307
|
carc2.Uranium = 92;
|
|
24308
|
-
cggl.Lcom_actelion_research_chem_PeriodicTable_2_classLit = createForClass("com.actelion.research.chem", "PeriodicTable",
|
|
24308
|
+
cggl.Lcom_actelion_research_chem_PeriodicTable_2_classLit = createForClass("com.actelion.research.chem", "PeriodicTable", 494, cggl.Ljava_lang_Object_2_classLit);
|
|
24309
24309
|
carc2.$clinit_RingCollection = function $clinit_RingCollection() {
|
|
24310
24310
|
carc2.$clinit_RingCollection = emptyMethod;
|
|
24311
24311
|
jl.$clinit_Object();
|
|
@@ -25405,10 +25405,10 @@ function getExports($wnd) {
|
|
|
25405
25405
|
}
|
|
25406
25406
|
return true;
|
|
25407
25407
|
};
|
|
25408
|
-
_.
|
|
25409
|
-
return this.
|
|
25408
|
+
_.findFragmentInMolecule_0 = function findFragmentInMolecule(countMode, matchMode) {
|
|
25409
|
+
return this.findFragmentInMolecule_1(countMode, matchMode, null);
|
|
25410
25410
|
};
|
|
25411
|
-
_.
|
|
25411
|
+
_.findFragmentInMolecule_1 = function findFragmentInMolecule_0(countMode, matchMode, atomExcluded) {
|
|
25412
25412
|
var atom, atomUsed, candidate, current, excludeGroup, index_0, isExcludedMatch, maxIndex;
|
|
25413
25413
|
this.mStop = false;
|
|
25414
25414
|
this.mMatchList = new ju.ArrayList();
|
|
@@ -25687,7 +25687,7 @@ function getExports($wnd) {
|
|
|
25687
25687
|
queryDefaults |= 4194304;
|
|
25688
25688
|
return queryDefaults;
|
|
25689
25689
|
};
|
|
25690
|
-
_.
|
|
25690
|
+
_.getMatchList_0 = function getMatchList() {
|
|
25691
25691
|
return this.mMatchList;
|
|
25692
25692
|
};
|
|
25693
25693
|
_.getSortedMatch = function getSortedMatch(match_0) {
|
|
@@ -25829,10 +25829,10 @@ function getExports($wnd) {
|
|
|
25829
25829
|
return false;
|
|
25830
25830
|
};
|
|
25831
25831
|
_.isFragmentInMolecule_0 = function isFragmentInMolecule() {
|
|
25832
|
-
return this.
|
|
25832
|
+
return this.findFragmentInMolecule_0(1, this.mDefaultMatchMode) > 0;
|
|
25833
25833
|
};
|
|
25834
25834
|
_.isFragmentInMolecule_1 = function isFragmentInMolecule_0(matchMode) {
|
|
25835
|
-
return this.
|
|
25835
|
+
return this.findFragmentInMolecule_0(1, matchMode) > 0;
|
|
25836
25836
|
};
|
|
25837
25837
|
_.isListMember = function isListMember(atomicNo, list) {
|
|
25838
25838
|
var i;
|
|
@@ -26268,10 +26268,10 @@ function getExports($wnd) {
|
|
|
26268
26268
|
}
|
|
26269
26269
|
return index_0;
|
|
26270
26270
|
};
|
|
26271
|
-
_.
|
|
26272
|
-
return this.
|
|
26271
|
+
_.findFragmentInMolecule_0 = function findFragmentInMolecule_1(countMode, matchMode) {
|
|
26272
|
+
return this.findFragmentInMolecule_1(countMode, matchMode, null);
|
|
26273
26273
|
};
|
|
26274
|
-
_.
|
|
26274
|
+
_.findFragmentInMolecule_1 = function findFragmentInMolecule_2(countMode, matchMode, atomExcluded) {
|
|
26275
26275
|
var i;
|
|
26276
26276
|
if (jsNotEquals(this.mMoleculeIndexLong, null)) {
|
|
26277
26277
|
for (i = 0; i < this.mMoleculeIndexLong.length; i++)
|
|
@@ -26290,7 +26290,7 @@ function getExports($wnd) {
|
|
|
26290
26290
|
this.mFragment = new carc2.IDCodeParser(false).getCompactMolecule_1(this.mFragmentIDCode);
|
|
26291
26291
|
this.mSSSearcher.setMolecule_0(this.mMolecule);
|
|
26292
26292
|
this.mSSSearcher.setFragment_1(this.mFragment);
|
|
26293
|
-
return this.mSSSearcher.
|
|
26293
|
+
return this.mSSSearcher.findFragmentInMolecule_1(countMode, matchMode, atomExcluded);
|
|
26294
26294
|
};
|
|
26295
26295
|
_.getGraphMatcher = function getGraphMatcher() {
|
|
26296
26296
|
return this.mSSSearcher;
|
|
@@ -33470,12 +33470,12 @@ function getExports($wnd) {
|
|
|
33470
33470
|
templateMol = template.getFragment();
|
|
33471
33471
|
if (useFFP) {
|
|
33472
33472
|
searcherWithIndex.setFragment_3(templateMol, template.getFFP());
|
|
33473
|
-
if (searcherWithIndex.
|
|
33474
|
-
matchList = searcherWithIndex.getGraphMatcher().
|
|
33473
|
+
if (searcherWithIndex.findFragmentInMolecule_0(4, 8) != 0)
|
|
33474
|
+
matchList = searcherWithIndex.getGraphMatcher().getMatchList_0();
|
|
33475
33475
|
} else {
|
|
33476
33476
|
searcher.setFragment_1(templateMol);
|
|
33477
|
-
if (searcher.
|
|
33478
|
-
matchList = searcher.
|
|
33477
|
+
if (searcher.findFragmentInMolecule_0(4, 8) != 0)
|
|
33478
|
+
matchList = searcher.getMatchList_0();
|
|
33479
33479
|
}
|
|
33480
33480
|
if (isNotNull(matchList)) {
|
|
33481
33481
|
for (match$iterator = matchList.iterator(); match$iterator.hasNext_0(); ) {
|
|
@@ -36804,8 +36804,8 @@ function getExports($wnd) {
|
|
|
36804
36804
|
}
|
|
36805
36805
|
return false;
|
|
36806
36806
|
};
|
|
36807
|
-
defineClass(
|
|
36808
|
-
cggl.Lcom_actelion_research_chem_forcefield_mmff_type_Angle_2_classLit = createForClass("com.actelion.research.chem.forcefield.mmff.type", "Angle",
|
|
36807
|
+
defineClass(817, 1, { 1: 1 });
|
|
36808
|
+
cggl.Lcom_actelion_research_chem_forcefield_mmff_type_Angle_2_classLit = createForClass("com.actelion.research.chem.forcefield.mmff.type", "Angle", 817, cggl.Ljava_lang_Object_2_classLit);
|
|
36809
36809
|
carcfmt2.$clinit_Atom_0 = function $clinit_Atom_0() {
|
|
36810
36810
|
carcfmt2.$clinit_Atom_0 = emptyMethod;
|
|
36811
36811
|
jl.$clinit_Object();
|
|
@@ -38508,8 +38508,8 @@ function getExports($wnd) {
|
|
|
38508
38508
|
carcn.$clinit_StructureNameResolver();
|
|
38509
38509
|
return carcn.sResolver;
|
|
38510
38510
|
};
|
|
38511
|
-
defineClass(
|
|
38512
|
-
cggl.Lcom_actelion_research_chem_name_StructureNameResolver_2_classLit = createForClass("com.actelion.research.chem.name", "StructureNameResolver",
|
|
38511
|
+
defineClass(812, 1, { 1: 1 });
|
|
38512
|
+
cggl.Lcom_actelion_research_chem_name_StructureNameResolver_2_classLit = createForClass("com.actelion.research.chem.name", "StructureNameResolver", 812, cggl.Ljava_lang_Object_2_classLit);
|
|
38513
38513
|
carcp.$clinit_CLogPPredictor = function $clinit_CLogPPredictor() {
|
|
38514
38514
|
carcp.$clinit_CLogPPredictor = emptyMethod;
|
|
38515
38515
|
jl.$clinit_Object();
|
|
@@ -40847,12 +40847,12 @@ function getExports($wnd) {
|
|
|
40847
40847
|
genericReactant = this.mGenericReaction.getReactant_0(no);
|
|
40848
40848
|
this.mSSSearcher.setMol_0(genericReactant, this.mReactant[no]);
|
|
40849
40849
|
matchMode = 8 + (this.mAllowChargeCorrections ? 0 : 1);
|
|
40850
|
-
if (this.mSSSearcher.
|
|
40850
|
+
if (this.mSSSearcher.findFragmentInMolecule_0(5, matchMode) == 0) {
|
|
40851
40851
|
setCheck(this.mMatchList, no, new ju.ArrayList());
|
|
40852
40852
|
this.mReactantMatchCombinationCount = 0;
|
|
40853
40853
|
return false;
|
|
40854
40854
|
}
|
|
40855
|
-
setCheck(this.mMatchList, no, this.mSSSearcher.
|
|
40855
|
+
setCheck(this.mMatchList, no, this.mSSSearcher.getMatchList_0());
|
|
40856
40856
|
for (j = this.mMatchList[no].size() - 1; j >= 0; j--) {
|
|
40857
40857
|
matchingAtom = castTo(this.mMatchList[no].getAtIndex(j), 6);
|
|
40858
40858
|
for (k = 0; k < matchingAtom.length; k++) {
|
|
@@ -40953,11 +40953,11 @@ function getExports($wnd) {
|
|
|
40953
40953
|
this.mTargetMolecule = molecule;
|
|
40954
40954
|
this.mSSSearcher.setMol_0(this.mReactant, this.mTargetMolecule);
|
|
40955
40955
|
matchMode = 8;
|
|
40956
|
-
if (this.mSSSearcher.
|
|
40956
|
+
if (this.mSSSearcher.findFragmentInMolecule_0(countMode, matchMode) == 0) {
|
|
40957
40957
|
this.mMatchList = null;
|
|
40958
40958
|
return 0;
|
|
40959
40959
|
}
|
|
40960
|
-
this.mMatchList = this.mSSSearcher.
|
|
40960
|
+
this.mMatchList = this.mSSSearcher.getMatchList_0();
|
|
40961
40961
|
for (j = this.mMatchList.size() - 1; j >= 0; j--) {
|
|
40962
40962
|
matchingAtom = castTo(this.mMatchList.getAtIndex(j), 6);
|
|
40963
40963
|
for (k = 0; k < matchingAtom.length; k++) {
|
|
@@ -41422,12 +41422,12 @@ function getExports($wnd) {
|
|
|
41422
41422
|
break;
|
|
41423
41423
|
reactantSearcher.setFragment_1(rule.getReactant_1());
|
|
41424
41424
|
reactantSearcher.setFragmentSymmetryConstraints(rule.getReactantAtomSymmetryConstraints());
|
|
41425
|
-
if (0 != reactantSearcher.
|
|
41425
|
+
if (0 != reactantSearcher.findFragmentInMolecule_0(6, 8)) {
|
|
41426
41426
|
productSearcher.setFragment_1(rule.getProduct_1());
|
|
41427
|
-
if (0 != productSearcher.
|
|
41427
|
+
if (0 != productSearcher.findFragmentInMolecule_0(2, 8) && reactantSearcher.getMatchList_0().size() <= 512) {
|
|
41428
41428
|
historyScore = -1e4;
|
|
41429
|
-
productMatch = castTo(productSearcher.
|
|
41430
|
-
for (reactantMatch$iterator = reactantSearcher.
|
|
41429
|
+
productMatch = castTo(productSearcher.getMatchList_0().getAtIndex(0), 6);
|
|
41430
|
+
for (reactantMatch$iterator = reactantSearcher.getMatchList_0().iterator(); reactantMatch$iterator.hasNext_0(); ) {
|
|
41431
41431
|
reactantMatch = castTo(reactantMatch$iterator.next_3(), 6);
|
|
41432
41432
|
if (ruleApplicationCount++ >= this.mMaxRuleTries)
|
|
41433
41433
|
break;
|
|
@@ -49985,14 +49985,58 @@ function getExports($wnd) {
|
|
|
49985
49985
|
cargja.$clinit_JSSSSearcher = emptyMethod;
|
|
49986
49986
|
jl.$clinit_Object();
|
|
49987
49987
|
};
|
|
49988
|
-
cargja.JSSSSearcher = function JSSSSearcher() {
|
|
49988
|
+
cargja.JSSSSearcher = function JSSSSearcher(options) {
|
|
49989
49989
|
cargja.$clinit_JSSSSearcher();
|
|
49990
|
+
var matchMode;
|
|
49990
49991
|
Object_0.call(this);
|
|
49991
49992
|
this.$init_182();
|
|
49993
|
+
matchMode = this.getMatchMode(options);
|
|
49994
|
+
this.mMatchMode = matchMode;
|
|
49995
|
+
this.searcher = new carc2.SSSearcher_0(matchMode);
|
|
49992
49996
|
};
|
|
49993
49997
|
defineClass(586, 1, { 1: 1 }, cargja.JSSSSearcher);
|
|
49994
49998
|
_.$init_182 = function $init_182() {
|
|
49995
|
-
|
|
49999
|
+
};
|
|
50000
|
+
_.findFragmentInMolecule = function findFragmentInMolecule_3(options) {
|
|
50001
|
+
var countMode;
|
|
50002
|
+
countMode = this.getCountMode(options);
|
|
50003
|
+
return this.searcher.findFragmentInMolecule_0(countMode, this.mMatchMode);
|
|
50004
|
+
};
|
|
50005
|
+
_.getCountMode = function getCountMode(options) {
|
|
50006
|
+
options = options || {};
|
|
50007
|
+
var countMode = options.countMode || "overlapping";
|
|
50008
|
+
switch (countMode) {
|
|
50009
|
+
case "overlapping":
|
|
50010
|
+
return 4;
|
|
50011
|
+
case "existence":
|
|
50012
|
+
return 1;
|
|
50013
|
+
case "firstMatch":
|
|
50014
|
+
return 2;
|
|
50015
|
+
case "separated":
|
|
50016
|
+
return 3;
|
|
50017
|
+
case "rigorous":
|
|
50018
|
+
return 5;
|
|
50019
|
+
case "unique":
|
|
50020
|
+
return 6;
|
|
50021
|
+
default:
|
|
50022
|
+
throw new Error("invalid count mode: " + countMode);
|
|
50023
|
+
}
|
|
50024
|
+
};
|
|
50025
|
+
_.getMatchList = function getMatchList_0() {
|
|
50026
|
+
return cargju.convertIntArrayArrayList(this.searcher.getMatchList_0());
|
|
50027
|
+
};
|
|
50028
|
+
_.getMatchMode = function getMatchMode(options) {
|
|
50029
|
+
options = options || {};
|
|
50030
|
+
var matchMode = 0;
|
|
50031
|
+
if (options.matchAtomCharge === true)
|
|
50032
|
+
matchMode |= 1;
|
|
50033
|
+
if (options.matchAtomMass === true)
|
|
50034
|
+
matchMode |= 2;
|
|
50035
|
+
if (options.matchDBondToDelocalized === true)
|
|
50036
|
+
matchMode |= 4;
|
|
50037
|
+
if (options.matchAromDBondToDelocalized === true || options.matchAromDBondToDelocalized === void 0)
|
|
50038
|
+
matchMode |= 8;
|
|
50039
|
+
return matchMode;
|
|
49996
50040
|
};
|
|
49997
50041
|
_.isFragmentInMolecule = function isFragmentInMolecule_2() {
|
|
49998
50042
|
return this.searcher.isFragmentInMolecule_0();
|
|
@@ -50007,6 +50051,7 @@ function getExports($wnd) {
|
|
|
50007
50051
|
_.setMolecule = function setMolecule_4(molecule) {
|
|
50008
50052
|
this.searcher.setMolecule_0(molecule.getStereoMolecule());
|
|
50009
50053
|
};
|
|
50054
|
+
_.mMatchMode = 0;
|
|
50010
50055
|
cggl.Lcom_actelion_research_gwt_js_api_JSSSSearcher_2_classLit = createForClass("com.actelion.research.gwt.js.api", "JSSSSearcher", 586, cggl.Ljava_lang_Object_2_classLit);
|
|
50011
50056
|
cargja.$clinit_JSSSSearcherWithIndex = function $clinit_JSSSSearcherWithIndex() {
|
|
50012
50057
|
cargja.$clinit_JSSSSearcherWithIndex = emptyMethod;
|
|
@@ -51218,6 +51263,19 @@ function getExports($wnd) {
|
|
|
51218
51263
|
cargju.$clinit_Util = emptyMethod;
|
|
51219
51264
|
jl.$clinit_Object();
|
|
51220
51265
|
};
|
|
51266
|
+
cargju.convertIntArray = function convertIntArray(source) {
|
|
51267
|
+
return Array.from(source);
|
|
51268
|
+
};
|
|
51269
|
+
cargju.convertIntArrayArrayList = function convertIntArrayArrayList(list) {
|
|
51270
|
+
cargju.$clinit_Util();
|
|
51271
|
+
var array, i, size_0;
|
|
51272
|
+
size_0 = list.size();
|
|
51273
|
+
array = cargju.newJsArray(size_0);
|
|
51274
|
+
for (i = 0; i < size_0; i++) {
|
|
51275
|
+
cggcc.$set(array, i, cargju.convertIntArray(castTo(list.getAtIndex(i), 6)));
|
|
51276
|
+
}
|
|
51277
|
+
return array;
|
|
51278
|
+
};
|
|
51221
51279
|
cargju.convertParameterizedStringList = function convertParameterizedStringList(list) {
|
|
51222
51280
|
cargju.$clinit_Util();
|
|
51223
51281
|
var array, i, size_0;
|
|
@@ -51894,7 +51952,7 @@ function getExports($wnd) {
|
|
|
51894
51952
|
cggcc.uncheckedConversion = function uncheckedConversion(elapsed) {
|
|
51895
51953
|
return elapsed;
|
|
51896
51954
|
};
|
|
51897
|
-
defineClass(
|
|
51955
|
+
defineClass(495, 1, { 1: 1 }, cggcc.Duration);
|
|
51898
51956
|
_.$init_212 = function $init_212() {
|
|
51899
51957
|
this.start_0 = cggcc.currentTimeMillis();
|
|
51900
51958
|
};
|
|
@@ -51902,7 +51960,7 @@ function getExports($wnd) {
|
|
|
51902
51960
|
return cggcc.uncheckedConversion(cggcc.currentTimeMillis() - this.start_0);
|
|
51903
51961
|
};
|
|
51904
51962
|
_.start_0 = 0;
|
|
51905
|
-
cggl.Lcom_google_gwt_core_client_Duration_2_classLit = createForClass("com.google.gwt.core.client", "Duration",
|
|
51963
|
+
cggl.Lcom_google_gwt_core_client_Duration_2_classLit = createForClass("com.google.gwt.core.client", "Duration", 495, cggl.Ljava_lang_Object_2_classLit);
|
|
51906
51964
|
cggcc.$clinit_Scheduler$ScheduledCommand = function $clinit_Scheduler$ScheduledCommand() {
|
|
51907
51965
|
cggcc.$clinit_Scheduler$ScheduledCommand = emptyMethod;
|
|
51908
51966
|
};
|
|
@@ -54886,11 +54944,11 @@ function getExports($wnd) {
|
|
|
54886
54944
|
ji.$clinit_BufferedWriter = function $clinit_BufferedWriter() {
|
|
54887
54945
|
ji.$clinit_BufferedWriter = emptyMethod;
|
|
54888
54946
|
};
|
|
54889
|
-
defineClass(
|
|
54947
|
+
defineClass(814, 442, { 1: 1 });
|
|
54890
54948
|
_.newLine = function newLine() {
|
|
54891
54949
|
ocu.throwUnimplemented();
|
|
54892
54950
|
};
|
|
54893
|
-
cggl.Ljava_io_BufferedWriter_2_classLit = createForClass("java.io", "BufferedWriter",
|
|
54951
|
+
cggl.Ljava_io_BufferedWriter_2_classLit = createForClass("java.io", "BufferedWriter", 814, cggl.Ljava_io_Writer_2_classLit);
|
|
54894
54952
|
ji.$clinit_File = function $clinit_File() {
|
|
54895
54953
|
ji.$clinit_File = emptyMethod;
|
|
54896
54954
|
};
|
|
@@ -58716,9 +58774,9 @@ function getExports($wnd) {
|
|
|
58716
58774
|
jm.$clinit_Multiplication();
|
|
58717
58775
|
return add_20(add_20(mul_0(and_0(fromInt_0(a), 4294967295), and_0(fromInt_0(b), 4294967295)), and_0(fromInt_0(c), 4294967295)), and_0(fromInt_0(d), 4294967295));
|
|
58718
58776
|
};
|
|
58719
|
-
defineClass(
|
|
58777
|
+
defineClass(813, 1, { 1: 1 });
|
|
58720
58778
|
jm.whenUseKaratsuba = 63;
|
|
58721
|
-
cggl.Ljava_math_Multiplication_2_classLit = createForClass("java.math", "Multiplication",
|
|
58779
|
+
cggl.Ljava_math_Multiplication_2_classLit = createForClass("java.math", "Multiplication", 813, cggl.Ljava_lang_Object_2_classLit);
|
|
58722
58780
|
jm.$clinit_RoundingMode = function $clinit_RoundingMode() {
|
|
58723
58781
|
jm.$clinit_RoundingMode = emptyMethod;
|
|
58724
58782
|
jl.$clinit_Enum();
|
|
@@ -61921,8 +61979,8 @@ function getExports($wnd) {
|
|
|
61921
61979
|
ju.$clinit_InternalJsMapFactory();
|
|
61922
61980
|
return new ju.jsMapCtor();
|
|
61923
61981
|
};
|
|
61924
|
-
defineClass(
|
|
61925
|
-
cggl.Ljava_util_InternalJsMapFactory_2_classLit = createForClass("java.util", "InternalJsMapFactory",
|
|
61982
|
+
defineClass(816, 1, { 1: 1 });
|
|
61983
|
+
cggl.Ljava_util_InternalJsMapFactory_2_classLit = createForClass("java.util", "InternalJsMapFactory", 816, cggl.Ljava_lang_Object_2_classLit);
|
|
61926
61984
|
ju.$clinit_InternalStringMap = function $clinit_InternalStringMap() {
|
|
61927
61985
|
ju.$clinit_InternalStringMap = emptyMethod;
|
|
61928
61986
|
jl.$clinit_Object();
|
|
@@ -65750,8 +65808,8 @@ function getExports($wnd) {
|
|
|
65750
65808
|
ocu.$clinit_JSException();
|
|
65751
65809
|
ocu.throwError_0("unimplemented");
|
|
65752
65810
|
};
|
|
65753
|
-
defineClass(
|
|
65754
|
-
cggl.Lorg_cheminfo_utils_JSException_2_classLit = createForClass("org.cheminfo.utils", "JSException",
|
|
65811
|
+
defineClass(815, 1, { 1: 1 });
|
|
65812
|
+
cggl.Lorg_cheminfo_utils_JSException_2_classLit = createForClass("org.cheminfo.utils", "JSException", 815, cggl.Ljava_lang_Object_2_classLit);
|
|
65755
65813
|
ocu.$clinit_PlainJSObject = function $clinit_PlainJSObject() {
|
|
65756
65814
|
ocu.$clinit_PlainJSObject = emptyMethod;
|
|
65757
65815
|
cggcc.$clinit_JavaScriptObject();
|
|
@@ -71192,7 +71250,7 @@ function getExports($wnd) {
|
|
|
71192
71250
|
$sendStats("moduleStartup", "end");
|
|
71193
71251
|
$gwt && $gwt.permProps && __gwtModuleFunction.__moduleStartupDone($gwt.permProps);
|
|
71194
71252
|
const toReturn = $wnd["OCL"];
|
|
71195
|
-
toReturn.version = "9.
|
|
71253
|
+
toReturn.version = "9.12.0";
|
|
71196
71254
|
return toReturn;
|
|
71197
71255
|
}
|
|
71198
71256
|
var isBrowserWindow = typeof window !== "undefined" && typeof window.document !== "undefined";
|
|
@@ -71336,8 +71394,8 @@ export {
|
|
|
71336
71394
|
};
|
|
71337
71395
|
/**
|
|
71338
71396
|
* openchemlib - Manipulate molecules
|
|
71339
|
-
* @version v9.
|
|
71340
|
-
* @date 2025-10-
|
|
71397
|
+
* @version v9.12.0
|
|
71398
|
+
* @date 2025-10-15T07:37:41.764Z
|
|
71341
71399
|
* @link https://github.com/cheminfo/openchemlib-js
|
|
71342
71400
|
* @license BSD-3-Clause
|
|
71343
71401
|
*/
|