Modification du script de génération de la base pour avoir des mots centraux plus courants.

This commit is contained in:
Georges Dupéron 2011-05-23 00:16:32 +02:00
parent 3dd01c0d4c
commit 5de94a57cf

View File

@ -83,6 +83,6 @@ insert into random_cloud_node(eid,nbneighbors) select eid,sum(nb) from (
group by end
) where type = 1 group by eid;
create index i_random_cloud_node_nbneighbors on random_cloud_node(nbneighbors);
insert into random_center_node(eid) select eid from random_cloud_node where nbneighbors > 3;
insert into random_center_node(eid) select eid from random_cloud_node where nbneighbors > 6;
commit;
EOF