Skip to content

Commit bde4fc8

Browse files
committedApr 11, 2018
Deleted implementations. Why are you looking here 🤫
1 parent e5b34fa commit bde4fc8

File tree

4 files changed

+3
-114
lines changed

4 files changed

+3
-114
lines changed
 

‎src/js/maxflow.js

-40
Original file line numberDiff line numberDiff line change
@@ -51,28 +51,6 @@ export function finishAlgorithm(algorithm) {
5151
* @returns {boolean} If a path was found
5252
*/
5353
export function breadthFirst(network) {
54-
const visited = [];
55-
const queue = ["source"];
56-
57-
while (queue.length !== 0) {
58-
const nodeName = queue.shift();
59-
const node = network.getNode(nodeName);
60-
61-
for (let other in node.residuals) {
62-
if (!visited.includes(other) && node.residuals[other] > 0) {
63-
queue.push(other);
64-
visited.push(other);
65-
66-
const otherNode = network.getNode(other);
67-
otherNode.residualParent = nodeName;
68-
69-
if (other === "sink") { // found it
70-
return true;
71-
}
72-
}
73-
}
74-
}
75-
7654
return false;
7755
}
7856

@@ -85,18 +63,7 @@ export function breadthFirst(network) {
8563
* @returns {number}
8664
*/
8765
export function findMinResidual(network) {
88-
let min = Number.MAX_SAFE_INTEGER;
89-
let v = network.getNode("sink");
90-
while (v.name !== "source") {
91-
let u = network.getNode(v.residualParent);
92-
let residual = u.residuals[v.name];
93-
if (residual < min) {
94-
min = residual;
95-
}
96-
v = u;
97-
}
9866

99-
return min;
10067
}
10168

10269
/**
@@ -110,12 +77,5 @@ export function findMinResidual(network) {
11077
* @param flow
11178
*/
11279
export function updateResiduals(network, flow) {
113-
let v = network.getNode("sink");
114-
while (v.name !== "source") {
115-
let u = network.getNode(v.residualParent);
11680

117-
u.residuals[v.name] -= flow;
118-
v.residuals[u.name] += flow;
119-
v = u;
120-
}
12181
}

‎src/js/networks/baseball.js

+1-34
Original file line numberDiff line numberDiff line change
@@ -15,40 +15,7 @@ export const baseball = [
1515
const {teams, points, remainingGames, upcomingGames} = usaData1; // which case
1616
const team = 4; // which team nr are we checking can win?
1717

18-
// calculate our team's theoretical max score
19-
const maxScore = points[team] + remainingGames[team];
20-
21-
// how many wins can the other teams then have?
22-
const maxWins = [];
23-
for (let i = 0; i < points.length; i++) {
24-
maxWins[i] = maxScore - points[i];
25-
}
26-
27-
// Make nodes for the teams, limiting their number of wins
28-
for (let i = 0; i < teams.length; i++) {
29-
if (i === team) continue;
30-
net.createNode(teams[i]);
31-
net.createEdge(teams[i], "sink", maxWins[i]);
32-
}
33-
34-
// Try to assign a winner to each game
35-
for (let i = 0; i < teams.length; i++) {
36-
if (i === team) continue;
37-
38-
for (let j = i + 1; j < teams.length; j++) {
39-
if (j === team) continue;
40-
const gamesBetween = upcomingGames[i][j];
41-
if (gamesBetween === 0) {
42-
continue;
43-
}
44-
45-
const gameName = teams[i] + " vs. " + teams[j];
46-
net.createNode(gameName);
47-
net.createEdge("source", gameName, gamesBetween);
48-
net.createEdge(gameName, teams[i], 99);
49-
net.createEdge(gameName, teams[j], 99);
50-
}
51-
}
18+
// Implement net
5219

5320
return net;
5421
}

‎src/js/networks/movieplanning.js

+1-25
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {FlowNetwork} from "../network";
22

33
/**
44
* IMPLEMENT
5-
*
65
*/
76
export const movieplanning = [
87
{
@@ -12,30 +11,7 @@ export const movieplanning = [
1211

1312
const {scenes, days, actors} = dieHardData;
1413

15-
// Add the days
16-
days.forEach(day => {
17-
net.createNode(day);
18-
net.createEdge(day, "sink", 1);
19-
});
20-
21-
scenes.forEach(scene => {
22-
// Add scene
23-
net.createNode(scene.name);
24-
net.createEdge("source", scene.name, scene.daysToPractice);
25-
26-
// Only add edge to days where all actors are available
27-
days.forEach(day => {
28-
for (let i = 0; i < scene.actors.length; i++) {
29-
let actorName = scene.actors[i];
30-
if (!actors[actorName].includes(day)) {
31-
return;
32-
}
33-
}
34-
// If we reach here all actors are available that day
35-
net.createEdge(scene.name, day, 1);
36-
})
37-
38-
});
14+
// Implement net
3915

4016
return net;
4117
}

‎src/js/networks/twists.js

+1-15
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,7 @@ export const twists = [{
1111
generateNetwork: () => {
1212
const net = new FlowNetwork();
1313

14-
data.twists.forEach(twist => {
15-
net.createNode(twist.name);
16-
net.createEdge(twist.name, "sink", twist.amount);
17-
});
18-
19-
data.people.forEach(person => {
20-
net.createNode(person.name);
21-
net.createEdge("source", person.name, data.maxTwistsPerPerson);
22-
23-
person.wishes.forEach(wish => {
24-
net.createEdge(person.name, wish.twist, wish.amount);
25-
})
26-
27-
});
28-
14+
// Implement
2915

3016
return net;
3117
}

0 commit comments

Comments
 (0)
Please sign in to comment.