Blame view
BRIC/src/CSP_ANALYSE/CSPVerificationInstance.java
723 Bytes
eeb5cac08
![]() |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package CSP_ANALYSE; import CSP_CREATOR.CreatorInstance; import LOGIC.Instance; import LOGIC.ObjectList; import java.util.ArrayList; /** * * @author sarah */ public class CSPVerificationInstance { private CreatorInstance creInst; private AnalyseFDR analyse; public CSPVerificationInstance(Instance i, ObjectList listO) { creInst = new CreatorInstance(i, listO); creInst.CSPCreatorInstance(); analyse = new AnalyseFDR(i, listO); } public ArrayList<FDRResult> verificaInstanceIsIOprocess() { return analyse.takeResultIOProcess(); } } |