Line data Source code
1 : /*******************************************************************************
2 : * *
3 : * Cosmos:(C)oncept et (O)utils (S)tatistique pour les (Mo)deles *
4 : * (S)tochastiques *
5 : * *
6 : * Copyright (C) 2009-2012 LSV & LACL *
7 : * Authors: Paolo Ballarini Benoît Barbot & Hilal Djafri *
8 : * Website: http://www.lsv.ens-cachan.fr/Software/cosmos *
9 : * *
10 : * This program is free software; you can redistribute it and/or modify *
11 : * it under the terms of the GNU General Public License as published by *
12 : * the Free Software Foundation; either version 3 of the License, or *
13 : * (at your option) any later version. *
14 : * *
15 : * This program is distributed in the hope that it will be useful, *
16 : * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 : * GNU General Public License for more details. *
19 : * *
20 : * You should have received a copy of the GNU General Public License along *
21 : * with this program; if not, write to the Free Software Foundation, Inc., *
22 : * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
23 : * file InstanceSPNSim.cpp created by Benoît Barbot on 19/01/2017. *
24 : *******************************************************************************
25 : */
26 :
27 :
28 :
29 : // Classes in SPNBase
30 : #include "SPNBase.cpp"
31 : #include "Simulator.cpp"
32 :
33 : /*template class SPNBase<SPN_orig<EventsQueue>, EventsQueue>;
34 : template class SPNBase<SPN_orig<EventsQueueSet>, EventsQueueSet>;*/
35 : template class SimulatorBase<Simulator<EventsQueue,SPN_orig<EventsQueue>>, EventsQueue,SPN_orig<EventsQueue> >;
36 : template class SimulatorBase<Simulator<EventsQueueSet,SPN_orig<EventsQueueSet>>, EventsQueueSet,SPN_orig<EventsQueueSet> >;
37 :
38 : #include "LHA_orig.cpp"
39 :
40 : template class LHA<abstractMarking>;
41 24 : template class LHA_orig<abstractMarking>;
42 :
|