function calculateProbability(inputObjArr, expression) {
// 解析表达式
let match = expression.match(/^P\((.*)\)$/);
2023-06-20