2020-12-09 17:43:46 +00:00
|
|
|
with Ada.Text_IO; use Ada.Text_IO;
|
|
|
|
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
|
2020-12-12 13:05:39 +00:00
|
|
|
with Ada.Float_Text_IO; use Ada.Float_Text_IO;
|
2020-12-05 15:20:01 +00:00
|
|
|
with Ada.Command_Line; use Ada.Command_Line;
|
|
|
|
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
|
2020-12-09 17:43:46 +00:00
|
|
|
|
|
|
|
|
2020-12-07 22:03:27 +00:00
|
|
|
with Google_Naive;
|
2020-12-05 15:20:01 +00:00
|
|
|
|
2020-12-03 18:56:35 +00:00
|
|
|
procedure pageRank is
|
2020-12-05 18:18:53 +00:00
|
|
|
|
2020-12-09 14:43:16 +00:00
|
|
|
Type T_Double is digits 6;
|
2020-12-05 15:20:01 +00:00
|
|
|
ERROR_args: Exception;
|
|
|
|
|
2020-12-09 17:43:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-09 14:43:16 +00:00
|
|
|
procedure get_args(filename: in out Unbounded_String;
|
2020-12-05 18:18:53 +00:00
|
|
|
ite_max: in out Natural;
|
2020-12-05 15:20:01 +00:00
|
|
|
alpha: in out Float;
|
|
|
|
naif: in out Boolean) is
|
2020-12-09 17:43:46 +00:00
|
|
|
i: Natural := 1;
|
2020-12-05 15:20:01 +00:00
|
|
|
begin
|
2020-12-09 17:43:46 +00:00
|
|
|
|
2020-12-12 13:05:39 +00:00
|
|
|
put("Argument_Count = "); put(Argument_Count, 1); new_line;
|
2020-12-09 17:43:46 +00:00
|
|
|
for i in 1 .. Argument_Count loop
|
2020-12-12 13:05:39 +00:00
|
|
|
Put("Argument(");
|
|
|
|
Put(i, 0);
|
|
|
|
Put(") = ");
|
2020-12-09 17:43:46 +00:00
|
|
|
Put_line(Argument(i));
|
|
|
|
end loop;
|
2020-12-12 13:05:39 +00:00
|
|
|
|
|
|
|
new_line;
|
2020-12-09 17:43:46 +00:00
|
|
|
|
2020-12-05 15:20:01 +00:00
|
|
|
-- on vérifie d'abord que le nombre d'arguments est cohérent
|
2020-12-12 13:05:39 +00:00
|
|
|
if not(0 < Argument_Count and Argument_Count <= 6) then
|
2020-12-05 15:20:01 +00:00
|
|
|
raise ERROR_args;
|
2020-12-12 13:05:39 +00:00
|
|
|
else -- sinon on parse les arguments
|
2020-12-05 15:20:01 +00:00
|
|
|
loop
|
|
|
|
if Argument(i) = "-P" then
|
|
|
|
naif := True;
|
|
|
|
i := i + 1;
|
2020-12-12 13:05:39 +00:00
|
|
|
put_line("parsed naif");
|
2020-12-05 15:20:01 +00:00
|
|
|
elsif Argument(i) = "-A" then
|
|
|
|
alpha := Float'Value(Argument(i+1));
|
|
|
|
i := i + 2;
|
2020-12-12 13:05:39 +00:00
|
|
|
put_line("parsed alpha");
|
2020-12-05 15:20:01 +00:00
|
|
|
elsif Argument(i) = "-I" then
|
2020-12-12 13:05:39 +00:00
|
|
|
ite_max := Natural'Value(Argument(i+1));
|
2020-12-05 15:20:01 +00:00
|
|
|
i := i + 2;
|
2020-12-12 13:05:39 +00:00
|
|
|
put_line("parsed ite_max");
|
|
|
|
elsif Argument(i)(Argument(i)'Last-3 .. Argument(i)'Last) = ".net" then
|
2020-12-09 17:43:46 +00:00
|
|
|
filename := To_Unbounded_String(Argument(i)(Argument(i)'First .. Argument(i)'Last-4));
|
2020-12-05 15:20:01 +00:00
|
|
|
i := i + 1;
|
2020-12-12 13:05:39 +00:00
|
|
|
put_line("parsed filename");
|
2020-12-05 15:20:01 +00:00
|
|
|
else
|
2020-12-12 13:05:39 +00:00
|
|
|
put_line("unexpected passing case");
|
2020-12-05 15:20:01 +00:00
|
|
|
raise ERROR_args;
|
|
|
|
end if;
|
|
|
|
exit when i > Argument_Count;
|
|
|
|
end loop;
|
|
|
|
end if;
|
2020-12-12 13:05:39 +00:00
|
|
|
|
|
|
|
new_line;
|
|
|
|
|
|
|
|
put("alpha = "); put(alpha, 1); new_line;
|
|
|
|
put("naif = "); put(Boolean'Pos(naif), 1); new_line;
|
|
|
|
put("ite_max = "); put(Float(ite_max), 1); new_line;
|
|
|
|
put("filename = "); put_line(To_String(filename));
|
|
|
|
|
|
|
|
new_line;
|
|
|
|
|
2020-12-05 15:20:01 +00:00
|
|
|
exception
|
2020-12-12 13:05:39 +00:00
|
|
|
-- s'il y a un problème on arrête l'execution et on affiche l'usage.
|
2020-12-05 15:20:01 +00:00
|
|
|
when others =>
|
|
|
|
put_line("Erreur lors de la saisi de la commande");
|
|
|
|
put_line("Usage: pagerank [-I max_iterations] [-A alpha] [-P] fichier_reseau.net");
|
2020-12-05 18:18:53 +00:00
|
|
|
end get_args;
|
2020-12-05 15:20:01 +00:00
|
|
|
|
2020-12-09 17:43:46 +00:00
|
|
|
|
2020-12-16 16:41:52 +00:00
|
|
|
procedure choix_type_algo(N: Natural; filename: in Unbounded_String; file: in out Ada.Text_IO.File_Type; alpha: Float; ite_max: Natural; naif: Boolean) is
|
|
|
|
|
2020-12-09 14:43:16 +00:00
|
|
|
package Google is
|
|
|
|
new Google_Naive(T_Element => T_Double, N => N);
|
|
|
|
use Google;
|
|
|
|
|
2020-12-16 16:41:52 +00:00
|
|
|
procedure algorithm_naif(N: in Positive;
|
|
|
|
file: in out Ada.Text_IO.File_Type;
|
|
|
|
alpha: in Float;
|
|
|
|
ite_max: in Natural;
|
|
|
|
pi: out T_Vecteur) is
|
|
|
|
|
|
|
|
G: T_Google;
|
|
|
|
|
|
|
|
begin
|
|
|
|
|
|
|
|
initialize(pi);
|
|
|
|
put_line("initialized pi");
|
|
|
|
--put(pi); new_line;
|
|
|
|
|
|
|
|
initialize(G);
|
|
|
|
put_line("initialized G");
|
|
|
|
put(G); new_line;
|
|
|
|
|
|
|
|
create_H(G, file);
|
|
|
|
put_line("created H");
|
|
|
|
put(G); new_line;
|
|
|
|
close(file);
|
|
|
|
|
|
|
|
create_S(G);
|
|
|
|
put_line("created S");
|
|
|
|
put(G); new_line;
|
|
|
|
|
|
|
|
create_G(G, alpha);
|
|
|
|
put_line("created G");
|
|
|
|
put(G); new_line;
|
|
|
|
|
|
|
|
-- on applique l'algorithme itératif
|
|
|
|
put("ite: ");
|
|
|
|
for i in 1..ite_max loop
|
|
|
|
pi := pi * G;
|
|
|
|
put(i, 1); put(" ");
|
|
|
|
end loop; new_line;
|
|
|
|
|
|
|
|
new_line;
|
|
|
|
put_line("final pi:");
|
|
|
|
put(pi); new_line;
|
|
|
|
|
|
|
|
end algorithm_naif;
|
|
|
|
|
|
|
|
-- procedure algorithm_creux();
|
|
|
|
|
|
|
|
procedure write_to_file(filename: in Unbounded_String; pi_sorted: in T_Vecteur; pi_index: in T_Vecteur) is
|
|
|
|
file: Ada.Text_IO.File_Type;
|
|
|
|
begin
|
|
|
|
|
|
|
|
create(file, Out_File, To_String(filename & ".p"));
|
|
|
|
put(file, N);
|
|
|
|
put(file, alpha);
|
|
|
|
put(file, ite_max);
|
|
|
|
new_line(file);
|
|
|
|
put(file, pi_sorted);
|
|
|
|
close(file);
|
|
|
|
|
|
|
|
create(file, Out_File, To_String(filename & ".ord"));
|
|
|
|
put(file, pi_index);
|
|
|
|
close(file);
|
|
|
|
end write_to_file;
|
|
|
|
|
|
|
|
pi, pi_sorted, pi_index: T_Vecteur;
|
2020-12-09 14:43:16 +00:00
|
|
|
|
2020-12-05 18:18:53 +00:00
|
|
|
begin
|
2020-12-09 14:43:16 +00:00
|
|
|
|
2020-12-16 16:41:52 +00:00
|
|
|
if naif then
|
|
|
|
algorithm_naif(N, file, alpha, ite_max, pi);
|
|
|
|
else
|
|
|
|
--algorithm_creux(N, file, alpha, ite_max, pi);
|
|
|
|
null;
|
|
|
|
end if;
|
|
|
|
|
|
|
|
sort_with_index_desc(pi, pi_sorted, pi_index);
|
|
|
|
|
|
|
|
write_to_file(filename, pi_sorted, pi_index);
|
|
|
|
|
|
|
|
end choix_type_algo;
|
2020-12-09 14:43:16 +00:00
|
|
|
|
2020-12-05 15:20:01 +00:00
|
|
|
|
|
|
|
filename: Unbounded_String;
|
2020-12-05 18:18:53 +00:00
|
|
|
ite_max: Natural := 150;
|
2020-12-05 15:20:01 +00:00
|
|
|
naif: Boolean := False;
|
|
|
|
alpha: Float := 0.85;
|
|
|
|
|
2020-12-09 14:43:16 +00:00
|
|
|
N: Positive;
|
2020-12-05 18:18:53 +00:00
|
|
|
file: Ada.Text_IO.File_Type;
|
|
|
|
|
2020-12-03 18:56:35 +00:00
|
|
|
begin
|
|
|
|
|
2020-12-09 17:43:46 +00:00
|
|
|
get_args(filename, ite_max, alpha, naif);
|
|
|
|
put_line("args OK");
|
2020-12-05 18:18:53 +00:00
|
|
|
|
2020-12-09 17:43:46 +00:00
|
|
|
open(file, In_File, To_String(filename & ".net"));
|
2020-12-12 13:05:39 +00:00
|
|
|
put_line("file OK");
|
2020-12-05 18:18:53 +00:00
|
|
|
|
2020-12-09 17:43:46 +00:00
|
|
|
get(file, N); -- on récupère le nombre de pages
|
2020-12-12 13:05:39 +00:00
|
|
|
put("N = "); put(N, 1); new_line;
|
|
|
|
|
2020-12-16 16:41:52 +00:00
|
|
|
choix_type_algo(N, filename, file, alpha, ite_max, naif);
|
|
|
|
|
|
|
|
end pageRank;
|
|
|
|
|
|
|
|
|
|
|
|
--def triRapide(L): # Quicksort
|
|
|
|
-- if len(L) <= 1:
|
|
|
|
-- return L
|
|
|
|
-- pvt = L[0]
|
|
|
|
-- L1, L2 = [], []
|
|
|
|
-- for i in range(1, len(L)):
|
|
|
|
-- if L[i] < pvt:
|
|
|
|
-- L1.append(L[i])
|
|
|
|
-- else:
|
|
|
|
-- L2.append(L[i])
|
|
|
|
-- return triRapide(L1) + [pvt] + triRapide(L2)
|