From cbbc9bbecfd289a958b6f9527537272f08281a93 Mon Sep 17 00:00:00 2001 From: Lavell Burton Date: Wed, 22 Aug 2018 12:48:29 -0700 Subject: [PATCH] initial commit still refrencing --- src/main.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 1e719fd..4cd4e33 100644 --- a/src/main.js +++ b/src/main.js @@ -8,7 +8,7 @@ const Process = require('./Process'); // in a different way. const main = () => { const scheduler = new Scheduler(); - + for (let i = 1; i < 101; i++) { let rollForBlockingProcess = Math.random() < 0.25; scheduler.addNewProcess(new Process(i + 1000, null, rollForBlockingProcess)); @@ -19,3 +19,5 @@ const main = () => { main(); + +// initial commit still refrencing