-
Notifications
You must be signed in to change notification settings - Fork 1
/
code.js
135 lines (82 loc) · 3.1 KB
/
code.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
fetch('cy-style.json', {mode: 'no-cors'})
.then(function(res) {
return res.json()
})
.then(function(style) {
var cy = window.cy = cytoscape({
container: document.getElementById('cy'),
boxSelectionEnabled: false,
autounselectify: true,
layout: {
name: 'grid',
cols: 3
},
style: style,
elements: [
]
});
var configuracoesDeCriacao = {
point : {first: -1, second:-1},
contador : 0,
estaEmUmNo : false,
passivelDeSerFeitoAresta:false,
passivelDeEscolherOutroNo : false,
estaEmUmaAresta: false
};
cy.on("tap",evt=>{
if(!configuracoesDeCriacao.estaEmUmNo)
desenharNo(evt,configuracoesDeCriacao);
});
let botaoRemoverNo = document.getElementById("botaoRemoverNo");
let botaoAdicionarPeso = document.getElementById('botaoAdicionarPeso');
let botaoExecutar =document.getElementById('botaoExecutar');
let inputNoRemover = document.getElementById("noRemover");
botaoExecutar.addEventListener("click",evt=>{
cy.nodes().map(no=>{
no.style({"background-color":"gray"});
});
cy.edges().map(no=>{
no.style({"line-color":"gray"});
});
var valorNoInicial = 0;
if(valorNoInicial===undefined)
return;
var noInicio = cy.nodes("[label="+valorNoInicial+"]");
noInicio.style({"background-color":"red"})
var GrafoTeorico =construirGrafoTeorico(cy,noInicio);
var solucaoFinal = antSystem(GrafoTeorico,10);
var noIt=undefined;
var primeiraIt = true;
solucaoFinal.ciclo.forEach(element => {
cy.nodes("[label="+element+"]").map(node=>{
node.style({"background-color":"red"});
if(!primeiraIt){
noIt.edgesTo(node).style({"line-color":"red"});
node.edgesTo(noIt).style({"line-color":"red"});
}
noIt = node;
})
primeiraIt=false;
});
})
botaoRemoverNo.addEventListener("click",evt=>{
var inteiroNoRemover = inputNoRemover.value;
var collection = cy.elements("node[label="+inteiroNoRemover+"]");
cy.remove( collection )
})
var geradorDeAresta = {contadorParidade:0, idNoInicio:'',idNoFim:''};
botaoAdicionarPeso.addEventListener("click",evt=>{
var valor_noInicio = document.getElementById("noInicio").value;
var valor_noFim = document.getElementById("noFim").value;
var valor_peso = document.getElementById("peso").value;
let NoInicio= cy.collection("node[label="+valor_noInicio+"]")[0];
let NoFim = cy.collection("node[label="+valor_noFim+"]")[0];
var arestaNova = NoInicio.edgesTo(NoFim)[0];
NoInicio.edgesTo(NoFim).map(ele=>{
ele.data("label",valor_peso);
})
NoFim.edgesTo(NoInicio).map(ele=>{
ele.data("label",valor_peso);
})
});
});