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 |
|---|---|---|---|---|---|---|
null | ying-ICPC-2022-main/changedistillerplugin/src/org/eclipse/jdt/internal/core/util/CommentRecorderParser.java | /*******************************************************************************
* Copyright (c) 2000, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, an... | 13,600 | 41.905363 | 130 | java |
RAQ | RAQ-master/src/BFSQuery.java | import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.ListIterator;
import java.util.PriorityQueue;
import java.util.Stack;
class PartialS... | 38,750 | 28.17997 | 111 | java |
RAQ | RAQ-master/src/CGQHierarchicalIndex.java | import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map.Entry;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorServ... | 16,977 | 28.996466 | 128 | java |
RAQ | RAQ-master/src/CGQTimeOut.java |
public class CGQTimeOut implements Runnable {
static final int longDelay = 100000; // 100 sec
static final int shortDelay = 10000; // 10 sec
final int durationMilliSec;
public void run() {
try {
Thread.sleep(durationMilliSec);
//we should interrupt the search now
InterruptSearchSignalHandler.setInterr... | 1,252 | 20.982456 | 59 | java |
RAQ | RAQ-master/src/DBLP.java | import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Scanner;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java... | 60,256 | 31.119936 | 119 | java |
RAQ | RAQ-master/src/DBLPAlternate.java | import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Scanner;
import java.util.TreeMap... | 61,684 | 31.211488 | 148 | java |
RAQ | RAQ-master/src/DBLPHelper.java | import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Map.Entry;
import java.util.TreeMap;
public class DBLPH... | 22,468 | 21.246535 | 115 | java |
RAQ | RAQ-master/src/Experiments.java | import java.io.IOException;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Scanner;
import java.util.concurrent.ExecutionException;
public class Experiments {
static final int K = 10;
static final int MaxEdges = 30;
static final int mStart = 3;
static final int mEnd = 12;
static fi... | 22,215 | 24.389714 | 140 | java |
RAQ | RAQ-master/src/Graph.java | import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util... | 61,297 | 23.529012 | 104 | java |
RAQ | RAQ-master/src/Helper.java | import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Random;
public class Helper {
static boolean u... | 11,875 | 21.323308 | 95 | java |
RAQ | RAQ-master/src/IMDB.java | import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
imp... | 101,438 | 26.708003 | 134 | java |
RAQ | RAQ-master/src/IndexQuery.java | import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
/**
* All the get top-K code is here
* @author jithin
*
*/
public class IndexQuery extends Helper {
/**
* Function to find the Top-K subgraphs in the Target graph
* @param K
* @param queryGraph
* ... | 22,033 | 26.680905 | 109 | java |
RAQ | RAQ-master/src/InterruptSearchSignalHandler.java | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Vector;
import sun.misc.Signal;
import sun.misc.SignalHandler;
@SuppressWarnings("restriction")
public class InterruptSearchSignalHandler implements SignalHandler {
private static boolean interrupt=false;
s... | 1,794 | 25.791045 | 94 | java |
RAQ | RAQ-master/src/KPriorityQueue.java | import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
import java.util.PriorityQueue;
/**
* A priority queue maintaining the Top-K elements added to it
* @author jithin
*
*/
public class KPriorityQueue <E> extends Helper{
PriorityQueue<PQElement<E>> PQ;
... | 5,211 | 21.084746 | 97 | java |
RAQ | RAQ-master/src/NodeFeatures.java | import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
abstract class NodeFeatures{
//this is to avoid division by zero
//and also the case when we will have a no match
//even when shapes of query graph and subgraph match
static final double EPSILONve = 0.0001;
/**
* function to ge... | 3,648 | 21.25 | 85 | java |
RAQ | RAQ-master/src/Pokec.java | import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java... | 41,038 | 30.208365 | 117 | java |
RAQ | RAQ-master/src/Probability.java | import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
/**
* The probability of all the... | 5,169 | 22.824885 | 97 | java |
RAQ | RAQ-master/src/RAQ.java | import java.io.IOException;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.TreeMap;
import java.util.concurrent.ExecutionException;
public class RAQ extends Helper{
public static final int H = 1;
public static final int BeamWidth = 50;
public static final int WidthThreshold = 10... | 14,676 | 26.850095 | 138 | java |
RAQ | RAQ-master/src/ResultLogger.java | import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.StringWriter;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import j... | 47,952 | 31.598912 | 115 | java |
RAQ | RAQ-master/src/ShowProgress.java |
public class ShowProgress {
static int i;
static int j;
final static int speed = 15000;
static long delME = 0;
static void Showl (){
}
static void Show (){
if (j%speed == 0) {
i++;
if (i%2 == 0){
System.out.print('\b');
} else {
int k = i/2;
char c='-';
switch (k) {
case 0: c=... | 2,129 | 14.777778 | 52 | java |
RAQ | RAQ-master/src/TicToc.java | import java.util.Date;
/**
* Class to implement Tic Toc feature of Matlab
* @author jithin
*
*/
public class TicToc {
public static long startTime;
public static void Tic() {
boolean loud = true;
Tic (loud);
}
public static void Tic (boolean loud) {
startTime = System.currentTimeM... | 775 | 21.823529 | 65 | java |
RAQ | RAQ-master/src/TraditionalQuery.java | import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.PriorityQueue;
public class TraditionalQuery {
/**
* Find all the results with in the range 0 to rangeThreshold, we do a DFS search
* @param rangeThreshold : the range query value
* @param queryGraph
* @param bea... | 10,476 | 26.072351 | 105 | java |
tapjacking | tapjacking-master/gen/com/limbenjamin/csci4531/BuildConfig.java | /** Automatically generated file. DO NOT MODIFY */
package com.limbenjamin.csci4531;
public final class BuildConfig {
public final static boolean DEBUG = true;
} | 166 | 26.833333 | 50 | java |
tapjacking | tapjacking-master/gen/com/limbenjamin/csci4531/R.java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.limbenjamin.csci4531;
public final class R {
public static final class attr {
}
public static final class drawabl... | 1,072 | 31.515152 | 63 | java |
tapjacking | tapjacking-master/src/com/limbenjamin/csci4531/BackgroundInstallerService.java | package com.limbenjamin.csci4531;
import android.app.Service;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.IBinder;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android... | 2,623 | 23.523364 | 95 | java |
tapjacking | tapjacking-master/src/com/limbenjamin/csci4531/Main.java | package com.limbenjamin.csci4531;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
public class Main extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(save... | 503 | 21.909091 | 71 | java |
HybridRebeca | HybridRebeca-master/Examples/Heater/ComplexHeater/ComplexHeaterModel.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.Examples;
import HPalang.Core.ContinuousExpressions.DifferentialEquation;
import HPalang.Core.Messages.SetModeMessage... | 7,738 | 43.477011 | 121 | java |
HybridRebeca | HybridRebeca-master/Examples/Heater/SimpleHeater/SimpleHeaterModel.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.Examples;
import HPalang.Core.*;
import HPalang.Core.ContinuousExpressions.DifferentialEquation;
import static HPalan... | 3,296 | 31.643564 | 101 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BouncingBallModel.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;
import HPalang.Core.ContinuousExpressions.ConstantContinuousExpression;
import HPalang.Core.ContinuousExpressions.Dif... | 2,936 | 36.177215 | 139 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModel.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;
import HPalang.Core.ActorLocator;
import HPalang.Core.ActorLocators.DelegationActorLocator;
import HPalang.Core.Actor... | 27,166 | 56.435518 | 171 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelSimple.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;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPalang.Core.DelegationParameter;
im... | 7,335 | 40.446328 | 163 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelSingleWheel.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 23,458 | 50.445175 | 171 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelSingleWheelNoParam.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 21,799 | 49.580046 | 171 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelSingleWheelSimplified.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 28,865 | 50.917266 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelSingleWheelSimplified1.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 28,249 | 51.218115 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelSingleWheelSimplified11.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 29,749 | 51.101576 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheel.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;
import HPalang.Core.Actor;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.... | 26,732 | 53.335366 | 192 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheel1.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;
import HPalang.Core.Actor;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.... | 26,745 | 53.361789 | 192 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelAbstractedPhysics.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 22,595 | 51.671329 | 165 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelMoreSimplifiedMoreHybridWithProperties.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 31,992 | 51.620066 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelMoreSimplifiedWithProperties.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 30,469 | 51.625216 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelMoreSimplifiedWithPropertiesEmpty.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 27,188 | 50.986616 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelNoParam.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;
import HPalang.Core.Actor;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.... | 25,720 | 52.142562 | 171 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelNoParam1.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;
import HPalang.Core.Actor;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.... | 25,683 | 52.286307 | 171 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelNoParam11.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;
import HPalang.Core.Actor;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.... | 29,188 | 53.35568 | 192 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelSimplified.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;
import HPalang.Core.Actor;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.... | 25,362 | 52.060669 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelSimplifiedEmpty.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 26,837 | 52.25 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelSimplifiedWithProperties.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 30,830 | 53.27993 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelSimplifiedWithProperties1.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 30,873 | 53.355634 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/BrakeByWireModelTwoWheelSimplifiedWithPropertiesEmpty.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 27,145 | 52.227451 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/CompositioanlConvertionMain.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;
import HPalang.Core.ModelDefinition;
import HPalang.SpaceEx.Convertor.HPalangToCompositionalSXConvertor;
import HPala... | 1,096 | 32.242424 | 101 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/ConcurrentDelays.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;
import HPalang.Core.SoftwareActor;
import HPalang.Core.MainBlock;
import HPalang.Core.MessageHandler;
import HPalang.... | 1,917 | 33.25 | 95 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/DrawBridge.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;
import HPalang.Core.ActorLocators.DirectActorLocator;
import HPalang.Core.CommunicationType;
import HPalang.Core.Cont... | 13,784 | 49.680147 | 163 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/FileWriter.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;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
*
* @author Iman ... | 1,194 | 22.9 | 89 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/HRToHAExample1.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;
import HPalang.Core.CommunicationType;
import HPalang.Core.DiscreteExpressions.ConstantDiscreteExpression;
import HPa... | 4,161 | 34.87931 | 103 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/HRToHAExample2.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;
import HPalang.Core.CommunicationType;
import HPalang.Core.DiscreteExpressions.ConstantDiscreteExpression;
import HPa... | 3,954 | 33.692982 | 107 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/LTSPhyscialReducerUtilities.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;
import HPalang.Core.DiscreteExpressions.BinaryExpression;
import HPalang.Core.DiscreteExpressions.BinaryOperators.Log... | 7,084 | 34.074257 | 134 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/LTSPhysicalReducer.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;
import HPalang.Core.DiscreteExpressions.BinaryExpression;
import HPalang.Core.DiscreteExpressions.BinaryOperators.Log... | 5,225 | 38 | 143 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/LTSPhysicalReducer1.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;
import HPalang.Core.TransitionSystem.LabeledTransitionSystem;
import HPalang.LTSGeneration.RunTimeStates.GlobalRunTim... | 1,769 | 31.777778 | 119 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/LTSPhysicalReducer2.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;
import HPalang.Core.TransitionSystem.LabeledTransitionSystem;
import HPalang.LTSGeneration.RunTimeStates.GlobalRunTim... | 2,332 | 32.811594 | 91 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/LTSPhysicalReducer3.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;
import HPalang.Core.DiscreteExpressions.BinaryExpression;
import HPalang.Core.DiscreteExpressions.BinaryOperators.Log... | 5,725 | 39.9 | 186 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/LTSPhysicalReducer4.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;
import HPalang.Core.TransitionSystem.LabeledTransitionSystem;
import HPalang.LTSGeneration.RunTimeStates.GlobalRunTim... | 1,677 | 33.244898 | 111 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/LTSPhysicalReducer5.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;
import HPalang.Core.TransitionSystem.LabeledTransitionSystem;
import HPalang.LTSGeneration.RunTimeStates.GlobalRunTim... | 2,332 | 32.811594 | 91 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Main.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;
import HPalang.Convertors.HybridAutomatonToSXConvertor;
import HPalang.HybridAutomataGeneration.HybridAutomatonGenera... | 8,394 | 37.509174 | 144 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/SimpleModel.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;
import HPalang.Core.ModelDefinition;
/**
*
* @author Iman Jahandideh
*/
public class SimpleModel
{
public Mo... | 2,551 | 38.875 | 130 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/SimplePriodicModel.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;
import HPalang.Core.ActorLocators.ParametricActorLocator;
import HPalang.Core.CommunicationType;
import HPalang.Core.... | 5,177 | 40.095238 | 178 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/SingleBrakeAndBrakeController.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 9,877 | 47.421569 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/SingleBrakeAndBrakeControllerAndClock.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 11,987 | 45.107692 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/SingleBrakeAndBrakeControllerNoParam.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 9,932 | 47.691176 | 170 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/SingleBrakeModel.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 5,371 | 39.089552 | 125 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/SingleClockMode.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 27,532 | 50.17658 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/SingleSimplifiedBrake.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 4,696 | 32.312057 | 107 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/SingleTimeMonitor.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 5,327 | 38.761194 | 138 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/SingleWheelAndWheelControllerAndBrakeController.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 18,357 | 50.13649 | 168 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/SingleWheelModel.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 4,191 | 33.933333 | 143 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Thermostat.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;
import HPalang.Core.ContinuousExpressions.DifferentialEquation;
import HPalang.Core.MainBlock;
import HPalang.Core.Mo... | 2,686 | 32.5875 | 109 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/TwoWheelsModel.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;
import HPalang.Core.ActorType;
import HPalang.Core.CommunicationType;
import HPalang.Core.SoftwareActor;
import HPala... | 4,781 | 35.503817 | 141 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/VendingMachine.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;
import HPalang.Core.CommunicationType;
import HPalang.Core.ContinuousExpressions.ConstantContinuousExpression;
import... | 12,538 | 47.413127 | 161 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Convertors/DisjunctiveNormalFormConvertor.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.Convertors;
import HPalang.Core.DiscreteExpressions.BinaryExpression;
import HPalang.Core.DiscreteExpressions.BinaryOp... | 3,296 | 31.323529 | 110 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Convertors/HybridAutomatonToDMEConvertor.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.Convertors;
import HPalang.Core.ContinuousExpressions.DifferentialEquation;
import HPalang.Core.ContinuousExpressions.... | 3,718 | 32.504505 | 106 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Convertors/HybridAutomatonToSXConvertor.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.Convertors;
import HPalang.Core.ContinuousExpressions.DifferentialEquation;
import HPalang.HybridAutomataGeneration.Hy... | 7,938 | 38.894472 | 146 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Convertors/LTSToAUTConvertor.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.Convertors;
import HPalang.Core.TransitionSystem.Label;
import HPalang.Core.TransitionSystem.LabeledTransitionSystem;
... | 2,245 | 26.390244 | 79 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Convertors/LTSToFSMConvertor.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.Convertors;
import HPalang.Core.TransitionSystem.Label;
import HPalang.Core.TransitionSystem.LabeledTransitionSystem;
... | 2,589 | 26.553191 | 109 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Convertors/LTSToXMLConvertor.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.Convertors;
import HPalang.Core.TransitionSystem.LabeledTransitionSystem;
import HPalang.Core.MessagePacket;
import HP... | 4,368 | 33.674603 | 110 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Convertors/StringConversionUtilities.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.Convertors;
import HPalang.Core.DiscreteExpressions.BinaryExpression;
import HPalang.Core.Message;
import HPalang.Core... | 6,893 | 31.065116 | 123 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/Actor.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.HashMap;
import java.util.Map;
/**
*
* @author Iman Jahandideh
*/
public class Actor<T ex... | 2,711 | 25.851485 | 121 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/ActorLocator.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.LTSGeneration.RunTimeStates.ActorState;
/**
*
* @author Iman Jahandideh
*/
public abstract cl... | 447 | 23.888889 | 81 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/ActorType.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.Collection;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
impor... | 3,092 | 25.435897 | 89 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/CANSpecification.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.Messages.NormalMessage;
import java.util.HashMap;
import java.util.Map;
/**
*
* @author I... | 2,750 | 28.265957 | 130 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/CommunicationType.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 enum CommunicationType { Invalid, CAN, Wire};
| 299 | 22.076923 | 79 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/ContinuousExpression.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 ContinuousExpression extends Expression
{
}
| 312 | 18.5625 | 79 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/ContinuousVariable.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
*/
@Deprecated // Use variable instead
public class ContinuousVariable extend... | 642 | 21.964286 | 135 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/CreationUtilities.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.DiscreteExpressions.BinaryExpression;
import HPalang.Core.DiscreteExpressions.BinaryOperator... | 776 | 28.884615 | 106 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/DeepClonable.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
* @param <T>
*/
public interface DeepClonable<T> extends Cloneable
{
pub... | 340 | 19.058824 | 79 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/Delegation.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 Delegation extends Equalitable<Delegation>
{
private fina... | 1,010 | 20.978261 | 79 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/DelegationParameter.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.... | 2,552 | 25.59375 | 84 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/DiscreteExpression.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 DiscreteExpression extends Expression
{
public int Ev... | 361 | 21.625 | 79 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/EmptyActor.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 EmptyActor extends Actor<EmptyActorType>
{
public Em... | 403 | 18.238095 | 79 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/EmptyActorType.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.Collections;
import java.util.List;
/**
*
* @author Iman Jahandideh
*/
public class EmptyAc... | 456 | 18.041667 | 79 | java |
HybridRebeca | HybridRebeca-master/src/HPalang/Core/Equalitable.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
* @param <T>
*/
public abstract class Equalitable<T>
{
@Override
pu... | 1,230 | 23.62 | 79 | java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.