Overview
Comment: | [build] debug: remove rules printing |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | build | rg |
Files: | files | file ages | folders |
SHA3-256: |
c46f8d907be98890a6499813726c84e3 |
User & Date: | olr on 2018-06-19 16:55:58 |
Other Links: | branch diff | manifest | tags |
Context
2018-06-19
| ||
17:52 | [build] debugging info update check-in: 0b591a67d1 user: olr tags: build, rg | |
16:55 | [build] debug: remove rules printing check-in: c46f8d907b user: olr tags: build, rg | |
16:47 | [build] debug: remove rules printing check-in: fa229d6ee5 user: olr tags: build, rg | |
Changes
Modified compile_rules_graph.py from [33628f88ed] to [13a87fa5df].
︙ | ︙ | |||
314 315 316 317 318 319 320 | # processing rules print(" preparing rules...") for sGraphName, lRuleLine in dAllGraph.items(): lPreparedRule = [] for i, sRuleGroup, sTokenLine, iActionBlock, sActions, nPriority in lRuleLine: for lRule in createRule(i, sRuleGroup, sTokenLine, iActionBlock, sActions, nPriority, dDef): lPreparedRule.append(lRule) | < < < > > > > > > | 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | # processing rules print(" preparing rules...") for sGraphName, lRuleLine in dAllGraph.items(): lPreparedRule = [] for i, sRuleGroup, sTokenLine, iActionBlock, sActions, nPriority in lRuleLine: for lRule in createRule(i, sRuleGroup, sTokenLine, iActionBlock, sActions, nPriority, dDef): lPreparedRule.append(lRule) # Graph creation oDARG = darg.DARG(lPreparedRule, sLang) dAllGraph[sGraphName] = oDARG.createGraph() # Debugging #print("\nGRAPH:", sGraphName) #for e in lPreparedRule: # print(e) #for k, v in dAllGraph[sGraphName].items(): # print(k, "\t", v) # creating file with all functions callable by rules print(" creating callables...") sPyCallables = "# generated code, do not edit\n" #sJSCallables = "// generated code, do not edit\nconst oEvalFunc = {\n" for sFuncName, sReturn in dFUNCTIONS.items(): if sFuncName.startswith("g_c_"): # condition |
︙ | ︙ |
Modified darg.py from [5aaa4b1525] to [2922c13402].
︙ | ︙ | |||
106 107 108 109 110 111 112 | def displayInfo (self): print(" * {:<12} {:>16,}".format("Rules:", self.nRule)) print(" * {:<12} {:>16,}".format("Nodes:", self.nNode)) print(" * {:<12} {:>16,}".format("Arcs:", self.nArc)) def createGraph (self): dGraph = { 0: self.oRoot.getNodeAsDict() } | < < | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | def displayInfo (self): print(" * {:<12} {:>16,}".format("Rules:", self.nRule)) print(" * {:<12} {:>16,}".format("Nodes:", self.nNode)) print(" * {:<12} {:>16,}".format("Arcs:", self.nArc)) def createGraph (self): dGraph = { 0: self.oRoot.getNodeAsDict() } for oNode in self.lMinimizedNodes: sHashId = oNode.__hash__() if sHashId not in dGraph: dGraph[sHashId] = oNode.getNodeAsDict() else: print("Error. Double node… same id: ", sHashId) print(str(oNode.getNodeAsDict())) return dGraph |
︙ | ︙ |