-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReductionAlgorithm.java
165 lines (138 loc) · 4.94 KB
/
ReductionAlgorithm.java
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
164
165
import java.awt.List;
import java.io.FileNotFoundException;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Vector;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
public class ReductionAlgorithm {
public static int low (int [] colonne) {
//Récupère le pivot de la colonne en considérant des nombres modulo 2.
int n = colonne.length;
int i = n-1;
while(i>=0&& colonne[i]%2==0) {
i=i-1;
}
return i;
}
public static int[] GetColumn(int j, int[][] matrix){
//Fonction utilitaire pour récupérer la j-ème colonne de la matrice matrix.
int n=matrix.length;
int[] res= new int[n];
for (int i=0;i<n;i++){
res[i]=matrix[i][j];
}
return res;
}
public static int[][] PivotGauss(int[][] initial){
int n = initial[0].length;
int l = initial.length;
int [][] result = new int[l][n];
for (int i =1;i<n;i++) {
int [] colonnei = GetColumn(i, initial);
int lowi=low(colonnei);
if (lowi!=-1 ) {
int j=i-1;
while(lowi!=-1 && j!=-1) {
int [] colonnej = GetColumn(j, result);
int lowj=low(colonnej);
if(lowi==lowj){
for (int m =0;m<n;m++) {
colonnei[m]=colonnei[m] + colonnej[m] ;}
lowi=low(colonnei);
j=i-1;
}
else{j=j-1;}
}
}
for (int ligne =0;ligne<l;ligne++) {
result[ligne][i]= colonnei[ligne];
}
}
/* Fait : Nous garantissons, avec la méthode ci-dessus, une complexité en O(n^3).
*
* Preuve de complexité: Il s'agit pour chaque colonne i, d'inspecter les colonnes inférieures
* tant que le pivot de la colonne courante est non nulle et qu'il existe une autre colonne de pivot identique.
* Chaque colonne admet i-1<n colonnes inférieures sur lesquelles on itère.
* Si low(i)==low(j) avec j<i, on ajoute la colonne j à la colonne i,
* ce qui revient modulo 2 à annuler le coefficient M(low(i),i).
* On garantit qu'à chaque opération de réduction, la colonne diminue son pivot,
* si bien qu'on utilise une colonne pour réduire la colonne courante au plus une fois.
* En conséquence, il y a au plus (i-1) inspections des (i-1) colonnes précédentes. L'appel à low
* pour trouver le pivot s'effectue en temps linéraire, ainsi que l'opération de réduction entre deux colonnes.
* Au total, on effectue O(n^2) opérations pour réduire complètement une colonne.
* La complexité de réduction totale de la BoundaryMatrix est donc O(n^3).
*
* */
System.out.println(" ---------------- Reduced Matrix mod 2 --------------------");
for(int i=0;i<l;i++){
for(int j=0; j<n ;j++){
System.out.print(result[i][j]+ " ");
}
System.out.println(" ");
}
return result;
}
public static void ComputeBarcode(String Input, String Output) {
/*Cette fonction fait appel à toutes les précédentes:
* 1) Lecture de Input via ReadFiltration.
* 2) Création de la BoundaryMatrix B et tri des simplexes selon la filtration.
* 3) Réduction de la matrice via l'appel à PivotGauss.
* 4) Création de la liste des barcodes, -barcodes-.
* 5) Écriture des résultats dans le fichier OutPut.
* */
Vector<Simplex> F=new Vector<Simplex>();
try {
F = ReadFiltration.readFiltration (Input);
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Vector<Barcode> barcodes = new Vector<Barcode>();
BoundaryMatrix B= new BoundaryMatrix(F);
System.out.println("-----------------Sorted simplices-------------------");
System.out.println(B.sortedsimplices);
int [][] initial = B.creatematrix ();
int[][] matrice_finale = PivotGauss(initial);
int n_colonnes = matrice_finale[0].length;
for (int j =0;j<n_colonnes;j++) {
int lowj=low(GetColumn(j,matrice_finale));
if (lowj==-1){
Simplex current=B.sortedsimplices.get(j);
barcodes.addElement(new Barcode(current.dim,current.val,-1)); //-1 means it never dies. (inf)
}
else{
Simplex current=B.sortedsimplices.get(j);
Simplex ante =B.sortedsimplices.get(lowj);
barcodes.addElement(new Barcode(ante.dim,ante.val,current.val));
if (barcodes.get(lowj).death==-1){
barcodes.get(lowj).death=-2; // -2 means no role of the previous zero column lowj since it has been killed after by column j.
}
}
PrintWriter writer;
try {
writer = new PrintWriter(new FileWriter(Output));
int n=barcodes.size();
for(int i=0;i<n;i++){
Barcode current=barcodes.get(i);
if (current.death!=-2){
if (current.death!=-1){
writer.println(current.dim+" "+current.birth+" "+current.death);}
else{writer.println(current.dim+" "+current.birth+" "+"inf");}
}
}
writer.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public static void main(String[] args) {
ComputeBarcode("filtration_A.txt","output1");
}
}