-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGrafos.js
163 lines (138 loc) · 5.01 KB
/
Grafos.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import {WebSystemObject} from "./WebSystemObject.js";
export class Grafo extends WebSystemObject {
constructor(nodos, arcos = []) {
super();
this.nodos = nodos ? nodos : [];
this.arcos = arcos;
}
// básico
// Si fuese un polígono , coincide con el número de vértices
get vertices() {
return this.nodes.length
}
// Número de vértices
set vertices(l) {
this.nodes.length = l;
this.#integridad();
}
// Si fuese un polígono , coincide con el número de aristas
get arcos() {
return this.arcos.length
}
set arcos(l) {
this.arcos.length = l;
this.#integridad();
}
get Ҳ() {
let c = () => {
let n = () => {
return 1 / ((1 / this.arcos) + (1 / 6));
}
return 2 * this.arcos / n();
}
return this.vertices - this.arcos + c();
}
get genus() {
let anomalía = () => { // ¿Será = curvatura ó = 1 - curvatura? Si es así... suprimir el método.
let r = () => {
let aristasIncidentes = 0;
this.nodes.forEach((node) => {
aristasIncidentes += this.valencia(node);
})
return aristasIncidentes / this.vertices;
}
return (r() * this.vertices) / (2 * this.arcos); // or inverse?
}
return anomalía() * (this.Ҳ - 2) / -2;
}
dimension() {
// Para los cálculos, se utiliza el radio unitario
// Se infiere del la fórmula del volumen V(n) = this.vertices = Math.(π, n/2) / Γ(1 + n/2)
}
curvatura() {
// Puede obtenerse de V = this.vertices = [ 2*Math.pow(Math.sqrt(π), n) / Γ(n/2) ] * [ Math.pow(n, Ω -1) ]
// Donde n -> es la dimensión
// y Ω, la curvatura entre 0 y 1; 0 es una superficie de una bola n + 1 dimensional, 1: una n-bola.
}
existeNodo(n) {
return this.nodos.some((node) => node === n);
}
crearNodo(n) {
if (!this.existeNodo(n)) {
this.nodes.push(n);
this.#integridad();
}
}
destruirNodo(n) {
if (this.existeNodo(n)) {
this.nodes = this.nodes.filter((node) => node !== n);
this.#integridad();
}
}
estanConectados(a, b) {
return this.arcos.some((arc) => (arc.origen === a && arc.destino === b) || ((arc.destino === b && arc.origen === a)));
}
existeArco(a, b) {
return this.arcos.some((arc) => (arc.origen === a && arc.destino === b));
}
crearArco(a, b) {
if (!this.existeArco(a, b)) {
this.arcos.push({origen: a, destino: b});
this.#integridad();
}
}
destruirArco(a, b) {
if (this.existeArco(a, b)) {
this.arcos = this.arcos.filter((arc) => !(arc.origen === a && arc.destino === b));
this.#integridad();
}
}
desconectar(a, b) {
if (this.estanConectados(a, b)) {
this.destruirArco(a, b);
this.destruirArco(b, a);
}
}
// medio
arcosEntrantes(a) {
return this.arcos.filter((arc) => arc.destino === a);
}
arcosSalientes(a) {
return this.arcos.filter((arc) => arc.origen === a);
}
nodosPrecedentes(a) {
return this.arcosEntrantes(a).map((arc) => arc.origen).filter((arc, Index, arr) => arr.indexOf(arc) === Index);
}
nodosConsecuentes(a) {
return this.arcosSalientes(a).map((arc) => arc.destino).filter((arc, Index, arr) => arr.indexOf(arc) === Index);
}
valencia(a) {
return this.nodosPrecedentes(a).concat(this.nodosConsecuentes(a)).filter((nodo, Index, arr) => arr.indexOf(nodo) === Index);
}
// absurdo
#integridad() {
this.nodos = this.nodos.filter((nodo) => this.arcos.some((arc) => arc.origen === nodo || arc.destino === nodo));
this.arcos.forEach((arc) => {
let origen = this.nodos.indexOf(arc.origen);
if (origen === -1) this.nodos.push(arc.origen)
let destino = this.nodos.indexOf(arc.destino);
if (destino === -1) this.nodos.push(arc.destino)
});
}
ordenamientoTopologico(tasks) {
function topologicalSort(tasks) {
function depVis(task1, task2) {
if (!task1 || !task2 || task1.name > task2.name) return -1;
if (tasks.some((element) => element.name === task1.name && element.dependencies.indexOf(task2.name) !== -1)) return 1;
else return task1.dependencies.some((element) => {
let it = tasks.find((el) => element === el.name);
return depVis(task1, it) === 1 && depVis(it, task2) === 1;
}) ? 1 : -1;
}
return tasks.sort((a, b) => a.name < b.name ? 1 : -1).sort((task1, task2) => -depVis(task1, task2)).reverse();
}
return this.nodes.map((node) => {
return {name: node, dependencies: this.nodosConsecuentes(node)}
});
}
}