repo
stringlengths
1
191
file
stringlengths
23
351
code
stringlengths
0
5.32M
file_length
int64
0
5.32M
avg_line_length
float64
0
2.9k
max_line_length
int64
0
288k
extension_type
stringclasses
1 value
HybridRebeca
HybridRebeca-master/src/HPalang/Core/EqualitableAndClonable.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.DeepClonable; import HPalang.Core.Equalitable; /** * * @author Iman Jahandideh * @param ...
435
20.8
97
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expression.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; /** * * @author Iman Jahandideh */ public interface Expression { public boolean IsComputable(ValuationCon...
510
25.894737
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ExpressionVisitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.ContinuousExpressions.ConstantContinuousExpression; import HPalang.Core.DiscreteExpressions....
1,375
34.282051
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/InstanceParameter.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; /** * * @author Iman Jahandideh */ public class InstanceParameter extends Equalitable<InstanceParameter> { ...
1,121
19.4
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/MainBlock.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Statements.SendStatement; import java.util.ArrayList; import java.util.LinkedList; import ja...
717
20.757576
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Message.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import java.util.Queue; /** * * @author Iman Jahandideh */ public interface Message { public enum Messag...
487
21.181818
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/MessageArguments.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; /** * * @author Iman Jahandid...
2,096
23.964286
95
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/MessageHandler.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import java.util.LinkedList; import java.util.Queue; /** * * @author Iman Jahandideh */ public class Message...
1,603
20.675676
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/MessageLocator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; /** * * @author Iman Jahandideh */ public interface MessageLocator { public Message Locate(Actor actor); ...
365
20.529412
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/MessagePacket.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Variables.RealVariable; import java.util.Collections; import java.util.List; /** * * @aut...
2,274
24
149
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/MessageParameters.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.LinkedList; imp...
2,082
25.705128
92
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Mode.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.ContinuousExpressions.DifferentialEquation; import HPalang.Core.ContinuousExpressions.Invari...
2,958
24.290598
183
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ModelCreationUtilities.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.ActorLocators.DelegationActorLocator; import HPalang.Core.ActorLocators.DirectActorLocator; ...
16,753
38.421176
169
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ModelDefinition.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Statements.SendStatement; import java.util.Collection; import java.util.HashSet; import java...
3,538
23.576389
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/NullExpression.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Expressions.Visitors.GeneralExpressionVisitor; /** * * @author Iman Jahandideh */ public...
1,362
19.969231
85
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/NullRealVariablePool.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Variables.RealVariable; /** * * @author Iman Jahandideh */ public class NullRealVariable...
1,663
20.333333
135
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Pair.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; /** * * @author Iman Jahandideh */ public class Pair<A, B> extends Equalitable<Pair<A,B>> { private final...
792
15.87234
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/PhysicalActor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; /** * * @author Iman Jahandideh */ public class PhysicalActor extends Actor<PhysicalActorType> { pub...
534
20.4
80
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/PhysicalActorType.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import java.util.Arrays; import java.util.HashMap; import java.util.Map; /** * * @author Iman Jahandideh */ ...
991
20.106383
84
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/RealVariablePool.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Variables.RealVariable; /** * * @author Iman Jahandideh */ public interface RealVariable...
704
27.2
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ShouldNotBeUsedException.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; /** * * @author Iman Jahandideh */ public class ShouldNotBeUsedException extends RuntimeException { ...
454
20.666667
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/SimpleRealVariablePool.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Variables.RealVariable; import java.util.HashSet; import java.util.Set; /** * * @author I...
3,346
24.549618
107
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/SingleCommunicationRealVariablePool.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Variables.RealVariable; import java.util.ArrayList; import java.util.HashMap; import java.ut...
5,551
29.173913
135
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/SoftwareActor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Variables.IntegerVariable; import HPalang.LTSGeneration.RunTimeStates.SoftwareActorState; im...
1,291
26.489362
89
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/SoftwareActorType.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Variable.Type; import java.util.Arrays; import java.util.Collection; import java.util.HashMa...
638
21.821429
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import java.util.Queue; import java.util.LinkedList; /** * * @author Iman Jahandideh */ public interface St...
722
20.909091
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ValuationContainer.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Variables.IntegerVariable; import java.util.Map; /** * * @author Iman Jahandideh */ publ...
744
28.8
122
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Variable.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import java.util.Objects; /** * * @author Iman Jahandideh */ // TODO: Don't use enum for type. Refactor thi...
1,284
18.179104
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/VariableArgument.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; /** * * @author Iman Jahandideh */ public class VariableArgument extends Equalitable<VariableArgument> { ...
977
19.808511
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/VariableParameter.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; /** * * @author Iman Jahandideh */ public class VariableParameter extends Equalitable<VariableParameter> { ...
917
18.125
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/VariableVisitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; import HPalang.Core.Variables.FloatVariable; import HPalang.Core.Variables.IntegerVariable; import HPalang.Core....
637
24.52
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Visitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core; /** * * @author Iman Jahandideh */ public interface Visitor { }
280
16.5625
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ActorLocators/DelegationActorLocator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.ActorLocators; import HPalang.Core.Actor; import HPalang.Core.ActorLocator; import HPalang.Core.DelegationParamet...
1,150
24.021739
80
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ActorLocators/DirectActorLocator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.ActorLocators; import HPalang.Core.Actor; import HPalang.Core.ActorLocator; import HPalang.LTSGeneration.RunTimeS...
911
19.727273
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ActorLocators/ParametricActorLocator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.ActorLocators; import HPalang.Core.Actor; import HPalang.Core.ActorLocator; import HPalang.Core.InstanceParameter...
1,212
23.755102
80
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ActorLocators/SelfActorLocator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.ActorLocators; import HPalang.Core.Actor; import HPalang.Core.ActorLocator; import HPalang.LTSGeneration.RunTimeS...
756
18.921053
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ContinuousExpressions/ConstantContinuousExpression.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.ContinuousExpressions; import HPalang.Core.Expression; import HPalang.Core.Expressions.Visitors.ConstantContinuou...
1,777
22.394737
135
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ContinuousExpressions/ContinuousExpressionT.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.ContinuousExpressions; import HPalang.Core.ContinuousExpression; import HPalang.Core.Equalitable; import HPalang....
472
23.894737
91
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ContinuousExpressions/DifferentialEquation.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.ContinuousExpressions; import HPalang.Core.ContinuousExpressions.ConstantContinuousExpression; import HPalang.Cor...
2,652
28.153846
135
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/ContinuousExpressions/Invarient.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.ContinuousExpressions; import HPalang.Core.Equalitable; import HPalang.Core.Expression; import HPalang.Core.Expre...
2,091
26.168831
135
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/ArithmeticExpression.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions; import HPalang.Core.DiscreteExpression; import HPalang.Core.DiscreteExpressions.BinaryOperat...
2,219
26.75
135
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryExpression.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions; import HPalang.Core.Expression; import HPalang.Core.ExpressionVisitor; import HPalang.Core.E...
2,420
25.604396
126
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions; import HPalang.Core.Expression; import HPalang.Core.ValuationContainer; /** * * @author I...
466
23.578947
90
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/ComparisonExpression.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions; import HPalang.Core.DiscreteExpression; import HPalang.Core.DiscreteExpressions.BinaryOperat...
3,006
29.373737
135
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/ConstantDiscreteExpression.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions; import HPalang.Core.Expression; import HPalang.Core.ExpressionVisitor; import HPalang.Core.E...
1,810
21.358025
95
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/DiscreteExpressionT.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions; import HPalang.Core.DiscreteExpression; import HPalang.Core.Equalitable; import HPalang.Core...
508
25.789474
97
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/FalseConst.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions; import HPalang.Core.ExpressionVisitor; import HPalang.Core.Expressions.Visitors.FalseConstVi...
690
21.290323
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/LogicalExpression.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions; import HPalang.Core.DiscreteExpression; import HPalang.Core.DiscreteExpressions.BinaryOperat...
2,273
26.39759
135
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/TrueConst.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions; import HPalang.Core.ExpressionVisitor; import HPalang.Core.Expressions.Visitors.TrueConstVis...
691
20.625
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/VariableExpression.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions; import HPalang.Core.ContinuousExpressions.ConstantContinuousExpression; import HPalang.Core....
2,098
23.988095
83
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/AddOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.DiscreteExpression; import HPalang.Core.Expression; impo...
805
24.1875
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/BinaryOperatorT.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.DiscreteExpressions.BinaryOperator; import HPalang.Core....
674
20.774194
91
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/DivisionOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.Expression; import HPalang.Core.ValuationContainer; /**...
713
22.8
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/EqualityOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.DiscreteExpression; import HPalang.Core.ValuationContain...
837
23.647059
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/GreaterEqualOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.DiscreteExpression; import HPalang.Core.ValuationContain...
850
23.314286
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/GreaterOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.DiscreteExpression; import HPalang.Core.ValuationContain...
838
22.971429
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/LesserEqualOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.DiscreteExpression; import HPalang.Core.ValuationContain...
837
25.1875
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/LesserOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.DiscreteExpression; import HPalang.Core.ValuationContain...
821
24.6875
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/LogicalAndOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.ValuationContainer; import HPalang.Core.Expression; /**...
729
24.172414
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/LogicalOrOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.ValuationContainer; import HPalang.Core.Expression; /**...
728
24.137931
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/MultiplyOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.Expression; import HPalang.Core.ValuationContainer; /**...
724
20.969697
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/DiscreteExpressions/BinaryOperators/SubtractOperator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.DiscreteExpressions.BinaryOperators; import HPalang.Core.DiscreteExpression; import HPalang.Core.ValuationContain...
815
24.5
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Negation.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions; /** * * @author Iman Jahandideh */ public class Negation { }
288
17.0625
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Crawlers/PostorderBinaryExpressionCrawler.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Crawlers; import HPalang.Core.DiscreteExpressions.BinaryExpression; import HPalang.Core.Expressions.V...
720
24.75
89
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Crawlers/PostorderConstantContinousExpressionCrawler.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Crawlers; import HPalang.Core.ContinuousExpressions.ConstantContinuousExpression; import HPalang.Core...
719
26.692308
112
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Crawlers/PostorderConstantDiscreteExpressionCrawler.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Crawlers; import HPalang.Core.DiscreteExpressions.ConstantDiscreteExpression; import HPalang.Core.Exp...
711
25.37037
109
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Crawlers/PostorderFalseConstCrawler.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Crawlers; import HPalang.Core.DiscreteExpressions.FalseConst; import HPalang.Core.Expressions.Visitor...
609
23.4
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Crawlers/PostorderTrueConstCrawler.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Crawlers; import HPalang.Core.DiscreteExpressions.TrueConst; import HPalang.Core.Expressions.Visitors...
604
22.269231
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Crawlers/PostorderVariableExpressionCrawler.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Crawlers; import HPalang.Core.DiscreteExpressions.VariableExpression; import HPalang.Core.Expressions...
663
23.592593
93
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Visitors/BinaryExpressionVisitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Visitors; import HPalang.Core.DiscreteExpressions.BinaryExpression; import HPalang.Core.Visitor; /**...
462
23.368421
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Visitors/ConstantContinuousExpressionVisitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Visitors; import HPalang.Core.ContinuousExpressions.ConstantContinuousExpression; /** * * @author ...
455
24.333333
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Visitors/ConstantDiscreteExpressionVisitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Visitors; import HPalang.Core.DiscreteExpressions.ConstantDiscreteExpression; /** * * @author Iman...
447
23.888889
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Visitors/DifferentialEquationVisitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Visitors; import HPalang.Core.ContinuousExpressions.DifferentialEquation; /** * * @author Iman Jah...
431
23
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Visitors/FalseConstVisitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Visitors; import HPalang.Core.DiscreteExpressions.FalseConst; /** * * @author Iman Jahandideh */ ...
399
21.222222
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Visitors/GeneralExpressionVisitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Visitors; import HPalang.Core.Expression; /** * * @author Iman Jahandideh */ public interface Gen...
386
20.5
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Visitors/InvarientVisitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Visitors; import HPalang.Core.ContinuousExpressions.Invarient; /** * * @author Iman Jahandideh */...
398
21.166667
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Visitors/TrueConstVisitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Visitors; import HPalang.Core.DiscreteExpressions.TrueConst; /** * * @author Iman Jahandideh */ p...
396
21.055556
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Expressions/Visitors/VariableExpressionVisitor.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Expressions.Visitors; import HPalang.Core.DiscreteExpressions.VariableExpression; /** * * @author Iman Jahandi...
423
22.555556
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/MessageLocators/DelegationMessageLocator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.MessageLocators; import HPalang.Core.Actor; import HPalang.Core.DelegationParameter; import HPalang.Core.Message;...
1,313
24.269231
95
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/MessageLocators/DirectMessageLocator.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.MessageLocators; import HPalang.Core.Actor; import HPalang.Core.Message; import HPalang.Core.MessageParameters; ...
1,027
19.156863
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/MessageLocators/MessageLocatorT.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.MessageLocators; import HPalang.Core.Equalitable; import HPalang.Core.MessageLocator; /** * * @author Iman Jah...
454
22.947368
112
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Messages/MessageWithBody.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Messages; import HPalang.Core.Equalitable; import HPalang.Core.Statement; import HPalang.Core.Message; import HPa...
1,525
20.8
84
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Messages/NormalMessage.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Messages; import HPalang.Core.Equalitable; import HPalang.Core.Message; import HPalang.Core.MessageHandler; impor...
1,498
20.112676
80
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Messages/SetModeMessage.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Messages; import HPalang.Core.Equalitable; import HPalang.Core.Message; import HPalang.Core.MessageParameters; im...
1,476
22.078125
92
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statements/AbstractStatement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Statements; import HPalang.Core.Equalitable; import HPalang.Core.Statement; /** * * @author Iman Jahandideh *...
538
22.434783
86
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statements/AssignmentStatement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Statements; import HPalang.Core.Expression; import HPalang.Core.Variable; /** * * @author Iman Jahandideh */ ...
1,028
20
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statements/AtomicBlockStatement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Statements; import HPalang.Core.Statement; import java.util.ArrayList; import java.util.Collection; import java.u...
879
21.564103
81
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statements/ContinuousAssignmentStatement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Statements; import HPalang.Core.ContinuousExpression; import HPalang.Core.ContinuousVariable; /** * * @author ...
584
24.434783
92
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statements/DelayStatement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Statements; import HPalang.Core.Statement; /** * * @author Iman Jahandideh */ public class DelayStatement ex...
943
18.265306
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statements/DiscreteAssignmentStatement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Statements; import HPalang.Core.DiscreteExpression; import HPalang.Core.DiscreteExpressions.DiscreteExpressionT; ...
645
25.916667
87
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statements/IfStatement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Statements; import HPalang.Core.DiscreteExpression; import HPalang.Core.DiscreteExpressions.DiscreteExpressionT; ...
1,859
25.571429
113
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statements/MessageTeardownStatement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Statements; import HPalang.Core.MessageParameters; import HPalang.Core.Variables.RealVariable; import java.util.L...
1,406
26.588235
112
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statements/ModeChangeStatement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Statements; import HPalang.Core.ActorLocator; import HPalang.Core.Mode; /** * * @author Iman Jahandideh */ pu...
811
18.804878
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statements/ResumeStatement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Statements; import HPalang.Core.Statement; /** * * @author Iman Jahandideh */ public class ResumeStatement ex...
664
18
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/Statements/SendStatement.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.Statements; import HPalang.Core.ActorLocator; import HPalang.Core.MessageArguments; import HPalang.Core.MessageLo...
2,104
26.337662
113
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/TransitionSystem/Label.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.TransitionSystem; import HPalang.LTSGeneration.Labels.Reset; import HPalang.Core.Equalitable; import HPalang.LTSG...
1,887
20.454545
96
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/TransitionSystem/LabeledTransitionSystem.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.TransitionSystem; import HPalang.LTSGeneration.RunTimeStates.GlobalRunTimeState; import java.util.Collection; imp...
3,543
26.905512
135
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/TransitionSystem/SimpleLTSState.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.TransitionSystem; import HPalang.Core.Equalitable; import java.util.ArrayList; import java.util.Collection; impor...
1,821
20.435294
97
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/TransitionSystem/StateWrapper.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.TransitionSystem; import HPalang.Core.Equalitable; import java.util.Collection; import java.util.List; /** * *...
740
26.444444
79
java
HybridRebeca
HybridRebeca-master/src/HPalang/Core/TransitionSystem/Transition.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package HPalang.Core.TransitionSystem; import HPalang.Core.Equalitable; /** * * @author Iman Jahandideh */ public class Transitio...
1,274
20.982759
87
java