commit 5de94a57cf0652a2bb072981ada8de3e44f142ae parent 3dd01c0d4c6537e532434f22d2f75a75fe82f1e7 Author: Georges Dupéron <jahvascriptmaniac+github@free.fr> Date: Mon, 23 May 2011 00:16:32 +0200 Modification du script de génération de la base pour avoir des mots centraux plus courants. Diffstat:
| M | code/serveur/dump2sqlite.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/serveur/dump2sqlite.sh b/code/serveur/dump2sqlite.sh @@ -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