-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from bd2kccd/v0.0.7
V0.0.7
- Loading branch information
Showing
18 changed files
with
155 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,12 +22,12 @@ | |
* | ||
* @author Zhou Yuan ([email protected]) | ||
*/ | ||
public class FgsContinuousDataValidation extends BasicDataValidation { | ||
public class FgesContinuousDataValidation extends BasicDataValidation { | ||
|
||
// Skip check for zero variance variables | ||
protected boolean skipNonzeroVariance; | ||
|
||
public FgsContinuousDataValidation() { | ||
public FgesContinuousDataValidation() { | ||
} | ||
|
||
public boolean isSkipNonzeroVariance() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,30 +22,30 @@ | |
* | ||
* @author Zhou Yuan ([email protected]) | ||
*/ | ||
public class FgsContinuousNewJob extends NewJob { | ||
public class FgesContinuousNewJob extends NewJob { | ||
|
||
// Algorithm parameters | ||
private FgsContinuousParameters algorithmParameters; | ||
private FgesContinuousParameters algorithmParameters; | ||
|
||
// Data validation flag | ||
private FgsContinuousDataValidation dataValidation; | ||
private FgesContinuousDataValidation dataValidation; | ||
|
||
public FgsContinuousNewJob() { | ||
public FgesContinuousNewJob() { | ||
} | ||
|
||
public FgsContinuousParameters getAlgorithmParameters() { | ||
public FgesContinuousParameters getAlgorithmParameters() { | ||
return algorithmParameters; | ||
} | ||
|
||
public void setAlgorithmParameters(FgsContinuousParameters algorithmParameters) { | ||
public void setAlgorithmParameters(FgesContinuousParameters algorithmParameters) { | ||
this.algorithmParameters = algorithmParameters; | ||
} | ||
|
||
public FgsContinuousDataValidation getDataValidation() { | ||
public FgesContinuousDataValidation getDataValidation() { | ||
return dataValidation; | ||
} | ||
|
||
public void setDataValidation(FgsContinuousDataValidation dataValidation) { | ||
public void setDataValidation(FgesContinuousDataValidation dataValidation) { | ||
this.dataValidation = dataValidation; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,11 @@ | |
* | ||
* @author Zhou Yuan ([email protected]) | ||
*/ | ||
public class FgsContinuousParameters extends FgsParameters { | ||
public class FgesContinuousParameters extends FgesParameters { | ||
|
||
private double penaltyDiscount; | ||
|
||
public FgsContinuousParameters() { | ||
public FgesContinuousParameters() { | ||
} | ||
|
||
public double getPenaltyDiscount() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,12 +22,12 @@ | |
* | ||
* @author Zhou Yuan ([email protected]) | ||
*/ | ||
public class FgsDiscreteDataValidation extends BasicDataValidation { | ||
public class FgesDiscreteDataValidation extends BasicDataValidation { | ||
|
||
// Skip 'limit number of categories' check | ||
private boolean skipCategoryLimit; | ||
|
||
public FgsDiscreteDataValidation() { | ||
public FgesDiscreteDataValidation() { | ||
} | ||
|
||
public boolean isSkipCategoryLimit() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,30 +22,30 @@ | |
* | ||
* @author Zhou Yuan ([email protected]) | ||
*/ | ||
public class FgsDiscreteNewJob extends NewJob { | ||
public class FgesDiscreteNewJob extends NewJob { | ||
|
||
// Algorithm parameters | ||
private FgsDiscreteParameters algorithmParameters; | ||
private FgesDiscreteParameters algorithmParameters; | ||
|
||
// Data validation flag | ||
private FgsDiscreteDataValidation dataValidation; | ||
private FgesDiscreteDataValidation dataValidation; | ||
|
||
public FgsDiscreteNewJob() { | ||
public FgesDiscreteNewJob() { | ||
} | ||
|
||
public FgsDiscreteParameters getAlgorithmParameters() { | ||
public FgesDiscreteParameters getAlgorithmParameters() { | ||
return algorithmParameters; | ||
} | ||
|
||
public void setAlgorithmParameters(FgsDiscreteParameters algorithmParameters) { | ||
public void setAlgorithmParameters(FgesDiscreteParameters algorithmParameters) { | ||
this.algorithmParameters = algorithmParameters; | ||
} | ||
|
||
public FgsDiscreteDataValidation getDataValidation() { | ||
public FgesDiscreteDataValidation getDataValidation() { | ||
return dataValidation; | ||
} | ||
|
||
public void setDataValidation(FgsDiscreteDataValidation dataValidation) { | ||
public void setDataValidation(FgesDiscreteDataValidation dataValidation) { | ||
this.dataValidation = dataValidation; | ||
} | ||
|
||
|
Oops, something went wrong.