summaryrefslogtreecommitdiff
path: root/core/source/benchmark/scala/com/rockymadden/stringmetric/similarity/OverlapMetricBenchmark.scala
diff options
context:
space:
mode:
Diffstat (limited to 'core/source/benchmark/scala/com/rockymadden/stringmetric/similarity/OverlapMetricBenchmark.scala')
-rwxr-xr-xcore/source/benchmark/scala/com/rockymadden/stringmetric/similarity/OverlapMetricBenchmark.scala14
1 files changed, 4 insertions, 10 deletions
diff --git a/core/source/benchmark/scala/com/rockymadden/stringmetric/similarity/OverlapMetricBenchmark.scala b/core/source/benchmark/scala/com/rockymadden/stringmetric/similarity/OverlapMetricBenchmark.scala
index e31ea97..89207f2 100755
--- a/core/source/benchmark/scala/com/rockymadden/stringmetric/similarity/OverlapMetricBenchmark.scala
+++ b/core/source/benchmark/scala/com/rockymadden/stringmetric/similarity/OverlapMetricBenchmark.scala
@@ -5,8 +5,6 @@ import com.rockymadden.stringmetric.{CaliperBenchmark, CaliperRunner}
import scala.util.Random
final class OverlapMetricBenchmark extends CaliperBenchmark {
- import OverlapMetricBenchmark.Metric
-
@Param(Array("0", "1", "2", "4", "8", "16"))
var length: Int = _
@@ -33,22 +31,18 @@ final class OverlapMetricBenchmark extends CaliperBenchmark {
}
def timeCompareWithDifferentCharArrays(reps: Int) = run(reps) {
- Metric.compare(charArray1, charArray2)(2)
+ OverlapMetric(2).compare(charArray1, charArray2)
}
def timeCompareWithDifferentStrings(reps: Int) = run(reps) {
- Metric.compare(string1, string2)(2)
+ OverlapMetric(2).compare(string1, string2)
}
def timeCompareWithIdenticalCharArrays(reps: Int) = run(reps) {
- Metric.compare(charArray1, charArray1)(2)
+ OverlapMetric(2).compare(charArray1, charArray1)
}
def timeCompareWithIdenticalStrings(reps: Int) = run(reps) {
- Metric.compare(string1, string1)(2)
+ OverlapMetric(2).compare(string1, string1)
}
}
-
-object OverlapMetricBenchmark extends CaliperRunner(classOf[OverlapMetricBenchmark]) {
- private final val Metric = OverlapMetric()
-}