Skip to content

Commit

Permalink
Remove experiment features.
Browse files Browse the repository at this point in the history
  • Loading branch information
aoli-al committed Apr 13, 2024
1 parent d9931a4 commit 7093536
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 1,346 deletions.
23 changes: 1 addition & 22 deletions Src/PChecker/CheckerCore/CheckerConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -292,36 +292,18 @@ public int MaxSchedulingSteps
[DataMember]
public string JvmArgs;

/// <summary>
/// For feedback strategy, save input if the pattern are partially matched.
/// </summary>
[DataMember]
public bool SavePartialMatch;

/// <summary>
/// For feedback strategy, discard saved generators if the size of the buffer is greater than N.
/// </summary>
[DataMember]
public int DiscardAfter;

/// <summary>
/// For feedback strategy, schedule generator mutations based on diversity.
/// For QL strategy, schedule generator mutations based on diversity.
/// </summary>
[DataMember]
public bool DiversityBasedPriority;

/// <summary>
/// For feedback strategy, ignore the pattern feedback.
/// </summary>
[DataMember]
public bool IgnorePatternFeedback;

/// <summary>
/// For feedback strategy, use priority based sampling.
/// </summary>
[DataMember]
public bool PriorityBasedSampling;

/// <summary>
/// Enable conflict analysis for scheduling optimization.
/// </summary>
Expand Down Expand Up @@ -373,11 +355,8 @@ protected CheckerConfiguration()

EnableColoredConsoleOutput = false;
DisableEnvironmentExit = true;
SavePartialMatch = true;
DiscardAfter = 100;
DiversityBasedPriority = true;
IgnorePatternFeedback = false;
PriorityBasedSampling = true;
EnableConflictAnalysis = false;

PSymArgs = "";
Expand Down

This file was deleted.

0 comments on commit 7093536

Please sign in to comment.