reformatting
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Alex 2023-04-19 22:17:20 +02:00
parent a549122acd
commit 6dcb9d31ff
2 changed files with 8 additions and 11 deletions

View File

@ -1,8 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
leiningen
vagrant
gnuplot
];
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
leiningen
vagrant
gnuplot
];
}

View File

@ -57,8 +57,6 @@
:unexpected #{}}
final (reduce
(fn [state op]
(info "state:" state)
(info "operation:" op)
(case [(:type op) (:f op)]
([:invoke :add])
(assoc state :add-started (conj (:add-started state) (:value op)))
@ -77,7 +75,6 @@
state))
init history)
valid? (and (empty? (:missed final)) (empty? (:unexpected final)))]
(info "final state:" final)
(assoc final :valid? valid?)))))
(defn workload1
@ -110,7 +107,7 @@
:timeline (timeline/html)}))
:generator (independent/concurrent-generator
10
(range 100)
(range)
(fn [k]
(gen/mix [op-add-rand100 op-read])))})