diff options
author | 2014-04-18 17:58:35 +0000 | |
---|---|---|
committer | 2014-04-18 17:58:35 +0000 | |
commit | 4b4b4542b24706b71b0c5f491ee88228583b19ba (patch) | |
tree | f930cdab497e958e7054d9598840122d2ec94246 /nl_examples/vccs.c | |
parent | 3c46c03671b6942d4db31154997abfd000489e35 (diff) |
Netlist:
- fixed a bug in which the fallback solver was called instead of gauss - seidel.
- matrix solvers are now subdevices of the solver devices
- matrix solvers can now be scheduled independently
- Rename RESCHED_LOOPS to GS_LOOPS (Gauss Seidel)
- Added paragmenter NR_LOOPS (Newton Raphson)
Diffstat (limited to 'nl_examples/vccs.c')
-rw-r--r-- | nl_examples/vccs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nl_examples/vccs.c b/nl_examples/vccs.c index fdad0c04a64..3945734a5da 100644 --- a/nl_examples/vccs.c +++ b/nl_examples/vccs.c @@ -11,7 +11,7 @@ NETLIST_START(vccs) CLOCK(clk, 1000) // 1000 Hz SOLVER(Solver, 48000) PARAM(Solver.ACCURACY, 1e-12) - PARAM(Solver.RESCHED_LOOPS, 10000) + PARAM(Solver.GS_LOOPS, 10000) VCCS(VV) PARAM(VV.G, 100) // typical OP-AMP amplification |