Warning: session_start(): open(/var/lib/php/sessions/sess_kph4m82v7rmo0j0lqjc1gggbc5, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51

Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
svoid ai_parseTree_makeWeights(AI_BottomUpParser1 parser, L productions, final Element e) { // Descend first for (Element child : ai_parseTree_getChildren(parser, productions, e)) ai_parseTree_makeWeights(parser, productions, child); // Then calculate this node's weight if (e instanceof HaveCategory && empty(e.children)) e.weight = 1.0; // TODO else e.weight = collectMaxDouble(e.children, 'weight); ai_Reconstructed r = e instanceof ChoosePart ? e.reconstruction : e instanceof HaveCategory ? e.reconstruction : null; if (r != null) e.weight *= ((ChoosePart) e).reconstruction.production.weight; }