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
infinispan-main/counter/src/main/java/org/infinispan/counter/configuration/CounterManagerConfiguration.java
package org.infinispan.counter.configuration; import static org.infinispan.counter.logging.Log.CONTAINER; import java.util.Collections; import java.util.Map; import org.infinispan.commons.configuration.attributes.AttributeDefinition; import org.infinispan.commons.configuration.attributes.AttributeSet; import org.inf...
2,167
34.540984
118
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/configuration/CounterConfigurationParser.java
package org.infinispan.counter.configuration; import static org.infinispan.counter.configuration.CounterConfigurationParser.NAMESPACE; import static org.infinispan.counter.logging.Log.CONTAINER; import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; import java.util.List; import j...
4,580
39.539823
110
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/logging/Log.java
package org.infinispan.counter.logging; import java.io.File; import org.infinispan.counter.exception.CounterConfigurationException; import org.infinispan.counter.exception.CounterException; import org.infinispan.counter.exception.CounterNotFoundException; import org.infinispan.util.ByteString; import org.jboss.loggin...
5,087
43.243478
131
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/CounterModuleLifecycle.java
package org.infinispan.counter.impl; import static java.util.EnumSet.of; import static org.infinispan.registry.InternalCacheRegistry.Flag.EXCLUSIVE; import static org.infinispan.registry.InternalCacheRegistry.Flag.PERSISTENT; import java.util.Map; import org.infinispan.commons.marshall.AdvancedExternalizer; import o...
8,553
50.842424
138
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/Utils.java
package org.infinispan.counter.impl; import static org.infinispan.counter.logging.Log.CONTAINER; import org.infinispan.counter.api.CounterState; import org.infinispan.counter.api.Storage; import org.infinispan.counter.exception.CounterConfigurationException; import org.infinispan.functional.Param; /** * Utility met...
2,519
35
120
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/SyncWeakCounterAdapter.java
package org.infinispan.counter.impl; import static org.infinispan.counter.impl.Util.awaitCounterOperation; import java.util.Objects; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.api.SyncWeakCounter; import org.infinispan.counter.api.WeakCounter; /** * A {@link WeakCounter} ...
1,639
19.246914
76
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/SyncStrongCounterAdapter.java
package org.infinispan.counter.impl; import static org.infinispan.counter.impl.Util.awaitCounterOperation; import java.util.Objects; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.api.StrongCounter; import org.infinispan.counter.api.SyncStrongCounter; /** * A {@link StrongCou...
2,052
20.840426
78
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/Util.java
package org.infinispan.counter.impl; import java.util.concurrent.CompletionException; import java.util.concurrent.CompletionStage; import java.util.concurrent.ExecutionException; import org.infinispan.counter.exception.CounterException; import org.infinispan.util.concurrent.CompletionStages; /** * Utility methods. ...
1,553
28.884615
103
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/factory/CacheBasedStrongCounterFactory.java
package org.infinispan.counter.impl.factory; import java.util.concurrent.CompletionStage; import org.infinispan.Cache; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.api.CounterType; import org.infinispan.counter.api.StrongCounter; import org.infinispan.counter.impl.manager.Inte...
1,760
39.953488
127
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/factory/CounterComponentsFactory.java
package org.infinispan.counter.impl.factory; import static org.infinispan.util.logging.Log.CONTAINER; import org.infinispan.counter.api.CounterManager; import org.infinispan.counter.impl.listener.CounterManagerNotificationManager; import org.infinispan.counter.impl.manager.CounterConfigurationManager; import org.infi...
2,644
43.830508
107
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/factory/WeakCounterFactory.java
package org.infinispan.counter.impl.factory; import java.util.concurrent.CompletionStage; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.api.WeakCounter; import org.infinispan.counter.impl.manager.InternalCounterAdmin; /** * Factory to create and remove {@link WeakCounter}. *...
1,045
29.764706
115
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/factory/CacheBasedWeakCounterFactory.java
package org.infinispan.counter.impl.factory; import java.util.concurrent.CompletionStage; import org.infinispan.Cache; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.api.CounterType; import org.infinispan.counter.api.WeakCounter; import org.infinispan.counter.impl.entries.Counte...
2,281
44.64
121
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/factory/StrongCounterFactory.java
package org.infinispan.counter.impl.factory; import java.util.concurrent.CompletionStage; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.api.StrongCounter; import org.infinispan.counter.impl.manager.InternalCounterAdmin; /** * Factory to create and remove bounded and unbounded...
1,057
30.117647
117
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/factory/CacheBaseCounterFactory.java
package org.infinispan.counter.impl.factory; import java.util.concurrent.CompletionStage; import org.infinispan.AdvancedCache; import org.infinispan.Cache; import org.infinispan.context.Flag; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.api.Storage; import org.infinispan.count...
1,994
37.365385
106
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/ResetFunction.java
package org.infinispan.counter.impl.function; import static org.infinispan.counter.impl.entries.CounterValue.newCounterValue; import java.io.IOException; import java.io.ObjectInput; import java.util.Collections; import java.util.Set; import org.infinispan.functional.EntryView; import org.infinispan.commons.logging.L...
2,247
28.973333
112
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/InitializeCounterFunction.java
package org.infinispan.counter.impl.function; import static org.infinispan.counter.impl.entries.CounterValue.newCounterValue; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.Collections; import java.util.Optional; import java.util.Set; import java.util.function.Fu...
2,781
34.666667
117
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/BaseCreateFunction.java
package org.infinispan.counter.impl.function; import java.util.function.Function; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.impl.entries.CounterKey; import org.infinispan.counter.impl.entries.CounterValue; import org.infinispan.functional.impl.CounterConfigurationMetaParam;...
1,906
34.981132
107
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/AddFunction.java
package org.infinispan.counter.impl.function; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.Collections; import java.util.Set; import org.infinispan.commons.logging.LogFactory; import org.infinispan.commons.marshall.AdvancedExternalizer; import org.infinispan.co...
2,062
29.338235
106
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/ReadFunction.java
package org.infinispan.counter.impl.function; import java.io.IOException; import java.io.ObjectInput; import java.util.Collections; import java.util.Set; import java.util.function.Function; import org.infinispan.functional.EntryView; import org.infinispan.commons.marshall.AdvancedExternalizer; import org.infinispan.c...
1,854
26.686567
100
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/FunctionHelper.java
package org.infinispan.counter.impl.function; import static org.infinispan.counter.impl.entries.CounterValue.newCounterValue; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.api.CounterState; import org.infinispan.counter.api.CounterType; import org.infinispan.counter.impl.entrie...
6,339
39.903226
148
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/SetFunction.java
package org.infinispan.counter.impl.function; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.io.Serializable; import java.util.Collections; import java.util.Set; import org.infinispan.commons.logging.LogFactory; import org.infinispan.commons.marshall.AdvancedExternali...
2,087
29.705882
110
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/RemoveFunction.java
package org.infinispan.counter.impl.function; import java.io.IOException; import java.io.ObjectInput; import java.util.Collections; import java.util.Set; import java.util.function.Function; import org.infinispan.commons.marshall.AdvancedExternalizer; import org.infinispan.commons.marshall.exts.NoStateExternalizer; im...
1,907
26.652174
102
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/CreateAndCASFunction.java
package org.infinispan.counter.impl.function; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.Collections; import java.util.Set; import org.infinispan.commons.marshall.AdvancedExternalizer; import org.infinispan.counter.api.CounterConfiguration; import org.infinis...
2,475
34.371429
122
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/BaseFunction.java
package org.infinispan.counter.impl.function; import java.util.Optional; import java.util.function.Function; import org.infinispan.counter.impl.entries.CounterKey; import org.infinispan.counter.impl.entries.CounterValue; import org.infinispan.functional.impl.CounterConfigurationMetaParam; import org.infinispan.counte...
1,272
32.5
118
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/CreateAndSetFunction.java
package org.infinispan.counter.impl.function; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.Collections; import java.util.Set; import org.infinispan.commons.marshall.AdvancedExternalizer; import org.infinispan.counter.api.CounterConfiguration; import org.infinis...
2,038
36.072727
141
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/CompareAndSwapFunction.java
package org.infinispan.counter.impl.function; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.Collections; import java.util.Set; import org.infinispan.commons.logging.LogFactory; import org.infinispan.commons.marshall.AdvancedExternalizer; import org.infinispan.co...
2,765
34.922078
119
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/function/CreateAndAddFunction.java
package org.infinispan.counter.impl.function; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.Collections; import java.util.Set; import org.infinispan.commons.marshall.AdvancedExternalizer; import org.infinispan.counter.api.CounterConfiguration; import org.infinis...
2,299
33.848485
118
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/interceptor/CounterInterceptor.java
package org.infinispan.counter.impl.interceptor; import java.util.Collection; import java.util.EnumSet; import org.infinispan.commands.write.PutKeyValueCommand; import org.infinispan.commons.logging.LogFactory; import org.infinispan.commons.util.EnumUtil; import org.infinispan.container.entries.CacheEntry; import org...
2,895
44.25
120
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/manager/CounterConfigurationStorage.java
package org.infinispan.counter.impl.manager; import java.util.Map; import org.infinispan.counter.api.CounterConfiguration; /** * A local storage to persist counter's {@link CounterConfiguration}. * * @author Pedro Ruivo * @since 9.2 */ public interface CounterConfigurationStorage { /** * Invoked when st...
1,271
26.652174
128
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/manager/CounterConfigurationManager.java
package org.infinispan.counter.impl.manager; import static org.infinispan.counter.configuration.ConvertUtil.parsedConfigToConfig; import static org.infinispan.counter.impl.Utils.validateStrongCounterBounds; import static org.infinispan.counter.logging.Log.CONTAINER; import java.util.Collection; import java.util.Colle...
10,886
39.173432
154
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/manager/EmbeddedCounterManager.java
package org.infinispan.counter.impl.manager; import static org.infinispan.commons.util.concurrent.CompletableFutures.completedNull; import static org.infinispan.commons.util.concurrent.CompletableFutures.toNullFunction; import static org.infinispan.counter.impl.Util.awaitCounterOperation; import static org.infinispan....
9,015
36.410788
150
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/manager/InternalCounterAdmin.java
package org.infinispan.counter.impl.manager; import static org.infinispan.counter.logging.Log.CONTAINER; import java.util.concurrent.CompletionStage; import org.infinispan.counter.api.StrongCounter; import org.infinispan.counter.api.WeakCounter; import org.infinispan.counter.exception.CounterException; /** * Inter...
2,096
29.838235
119
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/manager/VolatileCounterConfigurationStorage.java
package org.infinispan.counter.impl.manager; import static org.infinispan.counter.logging.Log.CONTAINER; import java.util.Collections; import java.util.Map; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.api.Storage; import org.infinispan.factories.scopes.Scope; import org.infi...
1,165
23.808511
88
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/manager/PersistedCounterConfigurationStorage.java
package org.infinispan.counter.impl.manager; import static org.infinispan.commons.util.Util.renameTempFile; import static org.infinispan.counter.configuration.ConvertUtil.parsedConfigToConfig; import static org.infinispan.counter.logging.Log.CONTAINER; import java.io.File; import java.io.FileInputStream; import java....
5,173
34.197279
107
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/weak/WeakCounterKey.java
package org.infinispan.counter.impl.weak; import java.util.Objects; import org.infinispan.commons.marshall.ProtoStreamTypeIds; import org.infinispan.counter.api.WeakCounter; import org.infinispan.counter.impl.entries.CounterKey; import org.infinispan.protostream.annotations.ProtoFactory; import org.infinispan.protost...
2,067
24.530864
107
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/weak/WeakCounterImpl.java
package org.infinispan.counter.impl.weak; import static org.infinispan.counter.impl.Utils.getPersistenceMode; import java.math.BigInteger; import java.util.ArrayList; import java.util.Arrays; import java.util.concurrent.CompletableFuture; import java.util.concurrent.CompletionStage; import java.util.concurrent.atomic...
15,551
33.48337
160
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/persistence/PersistenceContextInitializer.java
package org.infinispan.counter.impl.persistence; import org.infinispan.counter.impl.entries.CounterValue; import org.infinispan.counter.impl.strong.StrongCounterKey; import org.infinispan.counter.impl.weak.WeakCounterKey; import org.infinispan.marshall.persistence.impl.PersistenceMarshallerImpl; import org.infinispan....
1,322
37.911765
127
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/strong/AbstractStrongCounter.java
package org.infinispan.counter.impl.strong; import static org.infinispan.counter.impl.Util.awaitCounterOperation; import static org.infinispan.counter.impl.Utils.getPersistenceMode; import static org.infinispan.counter.impl.entries.CounterValue.newCounterValue; import java.util.concurrent.CompletableFuture; import ja...
9,962
36.037175
125
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/strong/BoundedStrongCounter.java
package org.infinispan.counter.impl.strong; import static org.infinispan.counter.exception.CounterOutOfBoundsException.LOWER_BOUND; import static org.infinispan.counter.exception.CounterOutOfBoundsException.UPPER_BOUND; import java.util.concurrent.CompletionException; import org.infinispan.AdvancedCache; import org....
2,731
34.947368
123
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/strong/StrongCounterKey.java
package org.infinispan.counter.impl.strong; import java.util.Objects; import org.infinispan.commons.marshall.ProtoStreamTypeIds; import org.infinispan.counter.api.StrongCounter; import org.infinispan.counter.impl.entries.CounterKey; import org.infinispan.protostream.annotations.ProtoFactory; import org.infinispan.pro...
1,608
23.378788
86
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/strong/UnboundedStrongCounter.java
package org.infinispan.counter.impl.strong; import org.infinispan.AdvancedCache; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.impl.entries.CounterValue; import org.infinispan.counter.impl.listener.CounterManagerNotificationManager; /** * An unbounded strong consistent counter...
1,316
27.630435
125
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/listener/CounterEventGenerator.java
package org.infinispan.counter.impl.listener; import org.infinispan.counter.api.CounterEvent; import org.infinispan.counter.impl.entries.CounterKey; import org.infinispan.counter.impl.entries.CounterValue; /** * A interface to generate {@link CounterEvent} from the current {@link CounterValue}. * * @author Pedro R...
780
26.892857
86
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/listener/TopologyChangeListener.java
package org.infinispan.counter.impl.listener; /** * The listener to be invoked when the cache topology changes. * * @author Pedro Ruivo * @since 9.2 */ @FunctionalInterface public interface TopologyChangeListener { /** * It notifies the cache topology change. */ void topologyChanged(); }
311
16.333333
62
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/listener/CounterManagerNotificationManager.java
package org.infinispan.counter.impl.listener; import static org.infinispan.commons.util.concurrent.CompletableFutures.completedNull; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.concurrent.CompletionStage; import java.util.concurrent.ConcurrentHashMap; import java.util.concu...
10,543
36.257951
119
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/listener/CounterEventImpl.java
package org.infinispan.counter.impl.listener; import org.infinispan.counter.api.CounterEvent; import org.infinispan.counter.api.CounterState; import org.infinispan.counter.impl.entries.CounterValue; import static java.util.Objects.requireNonNull; /** * The {@link CounterEvent} implementation. * * @author Pedro Ru...
2,584
26.795699
121
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/externalizers/ExternalizerIds.java
package org.infinispan.counter.impl.externalizers; /** * Ids range: 2000 - 2050 * * @author Pedro Ruivo * @since 9.0 */ public interface ExternalizerIds { //2000 CounterConfiguration in commons //2001 CounterState in commons Integer RESET_FUNCTION = 2002; Integer CONVERTER_AND_FILTER = 2003; Integ...
781
25.965517
50
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/entries/CounterValue.java
package org.infinispan.counter.impl.entries; import static org.infinispan.counter.impl.Utils.calculateState; import org.infinispan.commons.marshall.ProtoStreamTypeIds; import org.infinispan.counter.api.CounterConfiguration; import org.infinispan.counter.api.CounterState; import org.infinispan.counter.api.CounterType;...
4,291
29.439716
115
java
null
infinispan-main/counter/src/main/java/org/infinispan/counter/impl/entries/CounterKey.java
package org.infinispan.counter.impl.entries; import org.infinispan.util.ByteString; /** * Interface that represents the key stored in the cache. * * @author Pedro Ruivo * @since 9.0 */ public interface CounterKey { /** * @return The counter name. */ ByteString getCounterName(); }
304
15.052632
57
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/StationPackingTestUtils.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/StationPackingTestUtils.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
2,791
36.226667
136
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/TestConstraintManager.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/TestConstraintManager.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
2,027
36.555556
199
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/ConstraintManagerTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/ConstraintManagerTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
8,711
50.247059
181
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/TestConstraint.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/TestConstraint.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,204
29.897436
86
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/GraphBackedConstraintManager.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/GraphBackedConstraintManager.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
4,844
42.648649
126
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/GraphBackedConstraintManagerTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/GraphBackedConstraintManagerTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
10,947
40.003745
146
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/cache/containment/SatisfiabilityCacheTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/cache/containment/SatisfiabilityCacheTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
6,051
45.553846
167
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/cache/containment/ContainmentCacheUNSATEntryTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/cache/containment/ContainmentCacheUNSATEntryTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
5,174
40.733871
118
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/cache/containment/ContainmentCacheSATEntryTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/cache/containment/ContainmentCacheSATEntryTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
4,801
35.378788
102
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/test/SimpleStationGraphParser.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/test/SimpleStationGraphParser.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
4,639
35.825397
120
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/test/StationWholeSetSATCertifier.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/test/StationWholeSetSATCertifier.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
3,601
39.931818
154
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/test/AugmentIntegrationTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/test/AugmentIntegrationTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
6,574
41.419355
177
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/test/IStationGraphFileParser.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/test/IStationGraphFileParser.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,433
30.866667
93
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/test/GraphLoader.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/test/GraphLoader.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
4,904
38.878049
130
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/consistency/AC3EnforcerTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/consistency/AC3EnforcerTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
3,847
41.285714
105
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/execution/SATFCFacadeTests.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/execution/SATFCFacadeTests.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
60,905
333.648352
27,782
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/ASolverBundleTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/ASolverBundleTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
6,346
48.585938
294
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/composites/ParallelNoWaitSolverCompositeTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/composites/ParallelNoWaitSolverCompositeTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
5,401
47.232143
176
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/underconstrained/UnderconstrainedStationFinderTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/underconstrained/UnderconstrainedStationFinderTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
3,228
42.053333
142
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/decorators/ConnectedComponentGroupingDecoratorTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/decorators/ConnectedComponentGroupingDecoratorTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
5,042
48.441176
180
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/decorators/DelayedSolverDecoratorTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/decorators/DelayedSolverDecoratorTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
2,655
40.5
150
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/decorators/PythonAssignmentVerifierDecoratorTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/decorators/PythonAssignmentVerifierDecoratorTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
4,567
41.296296
162
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/decorators/PreviousAssignmentContainsAnswerDecoratorTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/decorators/PreviousAssignmentContainsAnswerDecoratorTest.java
package ca.ubc.cs.beta.stationpacking.solvers.decorators; import ca.ubc.cs.beta.stationpacking.base.Station; import ca.ubc.cs.beta.stationpacking.base.StationPackingInstance; import ca.ubc.cs.beta.stationpacking.datamanagers.constraints.ConstraintKey; import ca.ubc.cs.beta.stationpacking.datamanagers.constraints.ICons...
3,623
49.333333
151
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/base/SolverResultTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/base/SolverResultTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,774
30.696429
97
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/certifiers/cgneighborhood/ConstraintGraphNeighborhoodPresolverTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/certifiers/cgneighborhood/ConstraintGraphNeighborhoodPresolverTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
12,488
49.562753
228
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/certifiers/cgneighborhood/strategies/AddRandomNeighboursStrategyTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/certifiers/cgneighborhood/strategies/AddRandomNeighboursStrategyTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
4,077
44.311111
166
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/sat/solvers/nonincremental/UBCSATSolverTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/sat/solvers/nonincremental/UBCSATSolverTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
11,744
51.668161
368
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/sat/solvers/nonincremental/UBCSATLibraryTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/sat/solvers/nonincremental/UBCSATLibraryTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
13,993
40.525223
360
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/sat/solvers/nonincremental/Clasp3SATSolverTest.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/sat/solvers/nonincremental/Clasp3SATSolverTest.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
5,672
53.028571
355
java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/sat/solvers/jnalibraries/UBCSATTestHelperLibrary.java
SATFC-release/satfc/src/test/java/ca/ubc/cs/beta/stationpacking/solvers/sat/solvers/jnalibraries/UBCSATTestHelperLibrary.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,962
32.844828
86
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/stations/DomainStationManager.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/stations/DomainStationManager.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
4,511
31.228571
122
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/stations/IStationManager.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/stations/IStationManager.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
2,047
29.117647
95
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/ChannelSpecificConstraintManager.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/ChannelSpecificConstraintManager.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
6,073
45.723077
173
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/ConstraintKey.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/ConstraintKey.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,516
28.173077
92
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/AMapBasedConstraintManager.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/AMapBasedConstraintManager.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
7,831
41.107527
142
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/AConstraintManager.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/AConstraintManager.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
5,653
49.035398
167
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/Constraint.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/Constraint.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,178
31.75
86
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/UnabridgedFormatConstraintManager.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/UnabridgedFormatConstraintManager.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
5,439
55.666667
257
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/IConstraintManager.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/datamanagers/constraints/IConstraintManager.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
4,350
39.287037
162
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/ISATFCCacheEntry.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/ISATFCCacheEntry.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,083
27.526316
86
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/SatisfiabilityCacheFactory.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/SatisfiabilityCacheFactory.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
3,638
45.653846
188
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/ICacheEntryFilter.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/ICacheEntryFilter.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,303
32.435897
106
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/NewInfoEntryFilter.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/NewInfoEntryFilter.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
2,054
38.519231
114
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/StationPackingInstanceHasher.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/StationPackingInstanceHasher.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,523
31.425532
86
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/ICacher.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/ICacher.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,256
32.972973
108
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/CacheCoordinate.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/CacheCoordinate.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
2,026
33.948276
105
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/RedisCacher.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/RedisCacher.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
14,738
50.897887
281
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/ISatisfiabilityCacheFactory.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/ISatisfiabilityCacheFactory.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,227
34.085714
93
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/ICacheLocator.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/ICacheLocator.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,216
30.205128
93
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/containment/ContainmentCacheUNSATEntry.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/containment/ContainmentCacheUNSATEntry.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
5,925
39.040541
166
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/containment/ContainmentCacheSATResult.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/containment/ContainmentCacheSATResult.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
1,726
29.839286
116
java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/containment/SatisfiabilityCache.java
SATFC-release/satfc/src/main/java/ca/ubc/cs/beta/stationpacking/cache/containment/SatisfiabilityCache.java
/** * Copyright 2016, Auctionomics, Alexandre Fréchette, Neil Newman, Kevin Leyton-Brown. * * This file is part of SATFC. * * SATFC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of th...
11,624
44.588235
209
java