Skip to content

Commit

Permalink
Issue 106: SVM improve sample-spacing computation
Browse files Browse the repository at this point in the history
  • Loading branch information
gwlucastrig committed Jan 22, 2024
1 parent 89d12e9 commit 94c5c79
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions svm/src/main/java/org/tinfour/svm/SvmComputation.java
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,9 @@ public void processVolume(
spTime0 = System.nanoTime();
SvmSinglePointAnomalyFilter filter = new SvmSinglePointAnomalyFilter();
int nFilter = filter.process(ps, tin, properties);
ps.format(" Slope of anomaly %10.3f%n", properties.getExperimentalFilterSlopeOfAnomaly("0.5"));
ps.format(" Slope of support %10.3f%n", properties.getExperimentalFilterSlopeOfSupport("0.015"));
ps.format(" Points removed %d%n", nFilter);
if(nFilter>0){
// some vertices were marked as withheld
ArrayList<Vertex> filteredSamples = new ArrayList<>(soundings.size());
Expand Down

0 comments on commit 94c5c79

Please sign in to comment.