You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Circuit definitions support sub-circuits via schemas: property. Those schemas and circuit components are included into the target (main) circuit and resulting circuit does have one single schema.
However, sometimes we need to handle two different circuits as modules of each other. The "module" should be present as a black box within the target circuit.
Proposal
circuit1= (config) -> (value)->iface: "a b c"netlist: ...circuit2= (config) -> (value)->iface: "d e f"modules:
module1: circuit1bom:
module1:
"myvalue":"m1 m2"netlist:
1:"m1.a m2.c"...
The text was updated successfully, but these errors were encountered:
Circuit definitions support sub-circuits via
schemas:
property. Those schemas and circuit components are included into the target (main) circuit and resulting circuit does have one single schema.However, sometimes we need to handle two different circuits as modules of each other. The "module" should be present as a black box within the target circuit.
Proposal
The text was updated successfully, but these errors were encountered: