Skip to content

Commit

Permalink
Fix cycletime and format better.
Browse files Browse the repository at this point in the history
  • Loading branch information
ingenthr committed Jul 26, 2011
1 parent 61d3af4 commit a869bfd
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions src/com/couchbase/demo/gamesim/GameSimDriver.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,15 @@
configPrecedence = true)
@BenchmarkDriver(name = "GameSimDriver",
threadPerScale = (float) 1)
@MatrixMix (
operations = {"Login", "Logout", "Eat", "AttackRandom"},
mix = { @Row({0, 0, 66, 34 }),
@Row({100, 0, 0, 0 }),
@Row({0, 10, 56, 34 }),
@Row({0, 10, 56, 34})
}
)
@MatrixMix(operations = {"Login", "Logout", "Eat", "AttackRandom"},
mix = {
@Row({0, 0, 66, 34}),
@Row({100, 0, 0, 0}),
@Row({0, 10, 56, 34}),
@Row({0, 10, 56, 34})
})
@NegativeExponential(cycleType = CycleType.CYCLETIME,
cycleMean = 3,
cycleMean = 1000,
cycleDeviation = 5)
public class GameSimDriver {

Expand Down

0 comments on commit a869bfd

Please sign in to comment.