(el, name, cirType)
| 330 | _CIRCUITS[name] = cir |
| 331 | |
| 332 | def _addElement(el, name, cirType): |
| 333 | global _CIRCUITS, _USERCIRCUITS, _SLiCAPCIRCUITS |
| 334 | if cirType == 'system': |
| 335 | _SLiCAPCIRCUITS[name].elements[el.refDes] = el |
| 336 | elif cirType == 'user': |
| 337 | _USERCIRCUITS[name].elements[el.refDes] = el |
| 338 | elif cirType == 'main': |
| 339 | _CIRCUITS[name].elements[el.refDes] = el |
| 340 | |
| 341 | def _addModel(name, cirType, model): |
| 342 | global _CIRCUITS, _USERCIRCUITS, _SLiCAPCIRCUITS |
no outgoing calls
no test coverage detected