[Talossa.com portal]
[Citizens Toolbox]
[Immigration]
No Running elections

Parent message
D. N. VercáriâFebruary 17, 2005 - 10:29
Actually...(#1108), posted by Mr. Furxheir, R.M.W., [IP Hidden], February 17, 2005 - 10:48. Viewed 686 times.
User InfoText
Mr. Furxheir, R.M.W.
Group: admins
(1791 posts total)
(last post: November 24, 2007 - 15:07)
Citizen #20:
Martí- Paìr Furxhéir

> if ((elapsed_days <= X) && ((quorum_reached == 0)||((quorum_reached == 1) && (24_hours_passed_since_quorum == 0))))
> continue_voting ();
> else
> announce_results();

>
> because in your algorithm quorum_reached == 0 would mean that the result of the whole boolean expression is 0 ("FALSE"), thus announce_results() would have to be performed. ;-)


Actually, this is even better :

if ( elapsed_days <= X || quorum_reached == 0 || 24_hours_passed_since_quorum == 0 )
{
continue_voting ();
}
else
{
announce_results();
}

As long as ONE of the 3 conditions is true, we keep voting.


What does an elephant with Diarrhea need ?
Lot's of space...
Actually...Mr. Furxheir, R.M.W.February 17, 2005 - 10:48
Justice dal NavâFebruary 17, 2005 - 17:58
D. N. VercáriâFebruary 18, 2005 - 03:31
Justice dal NavâFebruary 18, 2005 - 07:20
D. N. VercáriâFebruary 17, 2005 - 12:08
Back to the forum | Forums Overview| Activate Thread View
Forums Overview | Login | Register | Lost your password? Cyphor (Release: 0.19, PHP 5.2.5)