mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2025-01-13 06:28:26 +01:00
Merge branch 'master' into ADC
This commit is contained in:
commit
7c1a30a51a
@ -111,7 +111,7 @@ draft: false
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
if (source !== undefined) {
|
if (source !== undefined) {
|
||||||
for (dat of submol.filter((d) => d !== source)) {
|
for (const dat of submol.filter((d) => d !== source)) {
|
||||||
dat.CopyExcitationsTypeFrom(source)
|
dat.CopyExcitationsTypeFrom(source)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -347,7 +347,7 @@ class dataFileBase {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
console.assert(double.length === 0, "Double found", double, dat.molecule, dat.method.toString())
|
console.assert(double.length === 0, "Double found", double, dat.molecule, dat.method.toString())
|
||||||
if (dat.DOI.string !== "10.1021/acs.jctc.8b01205") {
|
if (dat.DOI!== null && dat.DOI.string !== "10.1021/acs.jctc.8b01205") {
|
||||||
for (const ex of dat.excitations) {
|
for (const ex of dat.excitations) {
|
||||||
console.assert(Number.isNaN(ex.T1.valueOf()) | ex.T1 > 50 | ex.isUnsafe == true, "Must be unsafe", dat, ex)
|
console.assert(Number.isNaN(ex.T1.valueOf()) | ex.T1 > 50 | ex.isUnsafe == true, "Must be unsafe", dat, ex)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user