LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
DES.m
1classdef DES < SolverDES
2 % DES - Alias for SolverDES (Discrete Event Simulation solver)
3 %
4 % Copyright (c) 2012-2026, Imperial College London
5 % All rights reserved.
6
7 methods
8 function self = DES(model, varargin)
9 % DES(MODEL, VARARGIN)
10 self@SolverDES(model, varargin{:});
11 end
12 end
13end