liquid_feedback_core
diff test.sql @ 426:c83b2ac5477b
Use a composite type of two INT8's to describe the strength of a link for the Schulze method (necessary for tie-breaking of the links); Removed "no_reverse_beat_path" option
author | jbe |
---|---|
date | Wed May 21 22:01:43 2014 +0200 (2014-05-21) |
parents | a2ab4fb1d0c7 |
children | a16072fc288a |
line diff
1.1 --- a/test.sql Mon Apr 14 01:09:54 2014 +0200 1.2 +++ b/test.sql Wed May 21 22:01:43 2014 +0200 1.3 @@ -44,7 +44,7 @@ 1.4 "issue_quorum_num", "issue_quorum_den", 1.5 "initiative_quorum_num", "initiative_quorum_den", 1.6 "direct_majority_num", "direct_majority_den", "direct_majority_strict", 1.7 - "no_reverse_beat_path", "no_multistage_majority" 1.8 + "no_multistage_majority" 1.9 ) VALUES ( 1.10 1, 1.11 'Default policy', 1.12 @@ -52,7 +52,7 @@ 1.13 25, 100, 1.14 20, 100, 1.15 1, 2, TRUE, 1.16 - TRUE, FALSE ); 1.17 + FALSE ); 1.18 1.19 CREATE FUNCTION "time_warp"() RETURNS VOID 1.20 LANGUAGE 'plpgsql' VOLATILE AS $$