1%% This example
is temporarily disabled
3fprintf(1,
'This example illustrates the solution of a moderately large LQN.\n')
5cwd = fileparts(which(mfilename));
6model = LayeredNetwork.parseXML([cwd,filesep,'ofbizExample.xml']);
8options = LQNS.defaultOptions;
9options.keep = true; % uncomment to keep the intermediate XML files generates while translating the model to LQNS
11%% Solve with LN without initialization
12solver{1} = LQNS(model);
13AvgTable{1} = solver{1}.getAvgTable;
16%% Solve with LN without initialization
17solver{2} = LN(model, @(x) NC(x,
'verbose',
false));
19AvgTable{2} = solver{2}.getAvgTable;