Blame view
BRIC/src/CSP_ANALYSE/AnalyseProcessAuxiliar.java
567 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 |
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package CSP_ANALYSE; import LOGIC.Channel; import LOGIC.Type; import java.util.LinkedList; /** * * @author sarah */ public class AnalyseProcessAuxiliar { public AnalyseProcessAuxiliar(LinkedList<Channel> c, LinkedList<Type> t, String comp) { } //criar método que crie um csp com essas informações... //criar método que verifique o csp com o checker e retorne true ou false (boolean) dependendo da corretude do csp. } |