Bug in subcircuit
See original GitHub issueThe following code fails at finding all solutions:
Model model = new Model();
IntVar[] x = model.intVarArray("x", 10, 0, 20, true);
model.subCircuit(x, 0, model.intVar("length", 0, x.length - 1, true)).post();
model.getSolver().findAllSolutions();
assertEquals(1, model.getSolver().getSolutionCount());
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Logisim / Bugs / #30 OR gate in a subcircuit wired into another ...
The fix is to introduce a couple of Buffer components (or NOT gates) between Key Bin Convert and the registers. This slows down...
Read more >SubCircuit button not working correctly · Issue #565 - GitHub
Describe the bug. The SubCircuit button in the simulator just shows a common error messsage irrespective of the dependencies of the current ...
Read more >ngspice subcircuits with parameters + netlabels, broken
Bug Description. Simulation breaks with subcircuits with parameters in 5.1.2, if the subcircuit is connected to a named net.
Read more >Debugging subcircuits
As you test larger circuits, you will likely find bugs. ... To enter the subcircuit's state, you can use any of three different...
Read more >Re: [Ktechlab-devel] Another bug with subcircuits - The Mail Archive
... me that the bug is caused by not hiding the connectors from > the internal structure of the subcircuit (I guess ktechlab...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
ahah yes I doubled checked ^^
Ok, my bad, I’ve introduced a bug 😕