-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add expected value as a percentage, improve logs.
- Loading branch information
1 parent
84b7e60
commit 62084cf
Showing
8 changed files
with
16 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { BetikaScrapper } from "../core/scrapping/betika"; | ||
import { OrbitScrapper } from "../core/scrapping/orbit"; | ||
|
||
const scrapper = new BetikaScrapper(); | ||
const scrapper = new OrbitScrapper(); | ||
scrapper.fetchData(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { BetikaParser } from "../core/parsers/betika"; | ||
import { OrbitParser } from "../core/parsers/orbit"; | ||
|
||
const parser = new BetikaParser() | ||
const parser = new OrbitParser() | ||
parser.subscribeToChannels(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { BetikaGameEventsProcessor } from "../core/game_events/betika"; | ||
import { OrbitGameEventsProcessor } from "../core/game_events/orbit"; | ||
|
||
const gameEventsProcessor = new BetikaGameEventsProcessor(); | ||
const gameEventsProcessor = new OrbitGameEventsProcessor(); | ||
gameEventsProcessor.initGameEventsListener(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { ThreeWayAnalyzer } from "../core/analysis/three_way"; | ||
import { TwoWayAnalyser } from "../core/analysis/two_way"; | ||
|
||
const analyzer = new ThreeWayAnalyzer(); | ||
const analyzer = new TwoWayAnalyser(); | ||
analyzer.getData(); |