@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | function mean($x) { |
| 33 | 33 | $sum = 0; |
| 34 | 34 | $n = count($x); |
| 35 | - for ($i=0; $i<$n; $i++) { |
|
| 35 | + for ($i = 0; $i < $n; $i++) { |
|
| 36 | 36 | $sum += $x[$i]; |
| 37 | 37 | } |
| 38 | 38 | return $sum/$n; |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | $sum = 0; |
| 43 | 43 | $n = count($x); |
| 44 | 44 | $m = mean($x); |
| 45 | - for ($i=0; $i<$n; $i++) { |
|
| 45 | + for ($i = 0; $i < $n; $i++) { |
|
| 46 | 46 | $d = $x[$i] - $m; |
| 47 | 47 | $sum += $d*$d; |
| 48 | 48 | //echo "$x[$i] "; |
@@ -56,10 +56,10 @@ discard block |
||
| 56 | 56 | // returns the claimed credit for a given result/host and FP weight |
| 57 | 57 | // |
| 58 | 58 | function cc($x, $fpw) { |
| 59 | - $cps = $x->p_fpops*$fpw + $x->p_iops*(1-$fpw); |
|
| 59 | + $cps = $x->p_fpops*$fpw + $x->p_iops*(1 - $fpw); |
|
| 60 | 60 | $cps /= 1e9; |
| 61 | 61 | $cps /= 864; |
| 62 | - $cc = $x->cpu_time * $cps; |
|
| 62 | + $cc = $x->cpu_time*$cps; |
|
| 63 | 63 | return $cc; |
| 64 | 64 | } |
| 65 | 65 | |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | $nwus = 4000; |
| 85 | 85 | |
| 86 | 86 | $sum = array(); |
| 87 | - for ($i=0; $i<=10; $i++) { |
|
| 87 | + for ($i = 0; $i <= 10; $i++) { |
|
| 88 | 88 | $sum[] = 0; |
| 89 | 89 | } |
| 90 | 90 | $r1 = _mysql_query( |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | $r2 = _mysql_query("select * from result where workunitid=$wu->id"); |
| 97 | 97 | $found_zero = false; |
| 98 | 98 | while ($result = _mysql_fetch_object($r2)) { |
| 99 | - if ($result->granted_credit==0) continue; // skip invalid |
|
| 99 | + if ($result->granted_credit == 0) continue; // skip invalid |
|
| 100 | 100 | $host = BoincHost::lookup_id($result->hostid); |
| 101 | 101 | $r = new StdClass; |
| 102 | 102 | $r->cpu_time = $result->cpu_time; |
@@ -105,8 +105,8 @@ discard block |
||
| 105 | 105 | $results[] = $r; |
| 106 | 106 | } |
| 107 | 107 | //echo "Wu $wu->id -------------\n"; |
| 108 | - if (count($results)<2) continue; |
|
| 109 | - for ($i=0; $i<=10; $i++) { |
|
| 108 | + if (count($results) < 2) continue; |
|
| 109 | + for ($i = 0; $i <= 10; $i++) { |
|
| 110 | 110 | $fpw = $i/10.; |
| 111 | 111 | $sum[$i] += fpw_var($results, $fpw); |
| 112 | 112 | } |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | Number of workunits analyzed: $n |
| 121 | 121 | |
| 122 | 122 | "; |
| 123 | - for ($i=0; $i<=10; $i++) { |
|
| 123 | + for ($i = 0; $i <= 10; $i++) { |
|
| 124 | 124 | $fpw = $i/10.; |
| 125 | 125 | $r = $sum[$i]/$n; |
| 126 | 126 | echo "FP weight $fpw: variance is $r\n"; |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | $cli_only = true; |
| 23 | 23 | require_once("../inc/util_ops.inc"); |
| 24 | 24 | |
| 25 | -$max_age_days = 90; // lock threads older than this |
|
| 25 | +$max_age_days = 90; // lock threads older than this |
|
| 26 | 26 | if ($argc > 2) { |
| 27 | 27 | if ($argv[1] == "--ndays") { |
| 28 | 28 | $max_age_days = $argv[2]; |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | return $lines; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | -function write_count_file($n,$m) { |
|
| 44 | +function write_count_file($n, $m) { |
|
| 45 | 45 | $f = fopen("nresults", "w"); |
| 46 | 46 | if (!$f) return false; |
| 47 | 47 | $x = sprintf("%d\n%d\n", $n, $m); |
@@ -80,12 +80,12 @@ discard block |
||
| 80 | 80 | } |
| 81 | 81 | $n = read_count_file(); |
| 82 | 82 | if ($n == false) { |
| 83 | - write_count_file($m,$p); |
|
| 83 | + write_count_file($m, $p); |
|
| 84 | 84 | exit(); |
| 85 | 85 | } |
| 86 | 86 | if (trim($n[0]) == $m && trim($n[1]) == $p) { |
| 87 | 87 | fail("Result count hasn't changed\n"); |
| 88 | 88 | } |
| 89 | - write_count_file($m,$p); |
|
| 89 | + write_count_file($m, $p); |
|
| 90 | 90 | |
| 91 | 91 | ?> |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | $nresults_per_code = get_int('nresults_per_code', true); |
| 28 | 28 | if (!$nresults_per_code) $nresults_per_code = 10; |
| 29 | 29 | |
| 30 | -function compare ($x, $y) { |
|
| 30 | +function compare($x, $y) { |
|
| 31 | 31 | return $x->count < $y->count; |
| 32 | 32 | } |
| 33 | 33 | |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | // show the home page of app user from envvar |
| 36 | 36 | |
| 37 | 37 | $valid = $_GET['id']; |
| 38 | - if (!$valid || $valid!="whatever-validation-key-you-want") { |
|
| 38 | + if (!$valid || $valid != "whatever-validation-key-you-want") { |
|
| 39 | 39 | echo "User id (t.php?id=###) missing!"; |
| 40 | 40 | exit(); // can't do much without a userid! |
| 41 | 41 | } |
@@ -46,12 +46,12 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | // keep a 'running tab' in wapstr in case exceeds 1K WAP limit |
| 48 | 48 | |
| 49 | - $wapstr = PROJECT . "<br/>Status Info on<br/>" . wap_timestamp() . "<br/><br/>"; |
|
| 49 | + $wapstr = PROJECT."<br/>Status Info on<br/>".wap_timestamp()."<br/><br/>"; |
|
| 50 | 50 | |
| 51 | - $wapstr .= "#Users: " . getSingleQuery("select count(*) from user") . "<br/>"; |
|
| 52 | - $wapstr .= "#Hosts: " . getSingleQuery("select count(*) from host") . "<br/>"; |
|
| 53 | - $wapstr .= "#ModYr: " . sprintf("%ld", getSingleQuery("select sum(total_credit)/(.007*17280.0) from host")) . "<br/>"; |
|
| 54 | - $wapstr .= "#Cobbl: " . sprintf("%ld", getSingleQuery("select sum(total_credit) from host")) . "<br/>"; |
|
| 51 | + $wapstr .= "#Users: ".getSingleQuery("select count(*) from user")."<br/>"; |
|
| 52 | + $wapstr .= "#Hosts: ".getSingleQuery("select count(*) from host")."<br/>"; |
|
| 53 | + $wapstr .= "#ModYr: ".sprintf("%ld", getSingleQuery("select sum(total_credit)/(.007*17280.0) from host"))."<br/>"; |
|
| 54 | + $wapstr .= "#Cobbl: ".sprintf("%ld", getSingleQuery("select sum(total_credit) from host"))."<br/>"; |
|
| 55 | 55 | // I consider a host active if it's trickled in the last week |
| 56 | 56 | //$wapstr .= "#Activ: " . getSingleQuery("select count(distinct hostid) from cpdnexpt.trickle " |
| 57 | 57 | // . "where trickledate>=" . sprintf("%d", mktime() - (3600*24*7))) . "<br/>"; |
@@ -60,8 +60,8 @@ discard block |
||
| 60 | 60 | //$wapstr .= show_trickles("a", 0, 5, 1); |
| 61 | 61 | |
| 62 | 62 | // limit wap output to 1KB |
| 63 | - if (strlen($wapstr)>1024) |
|
| 64 | - echo substr($wapstr,0,1024); |
|
| 63 | + if (strlen($wapstr) > 1024) |
|
| 64 | + echo substr($wapstr, 0, 1024); |
|
| 65 | 65 | else |
| 66 | 66 | echo $wapstr; |
| 67 | 67 | |
@@ -37,12 +37,12 @@ discard block |
||
| 37 | 37 | // joined to the host |
| 38 | 38 | |
| 39 | 39 | $db = BoincDb::get(); |
| 40 | - $query = "select et_avg, host.on_frac, host.active_frac, host.gpu_active_frac, app_version.plan_class " . |
|
| 41 | - " from DBNAME.host_app_version, DBNAME.host, DBNAME.app_version " . |
|
| 42 | - " where host_app_version.app_version_id = app_version.id " . |
|
| 43 | - " and app_version.appid = $app->id " . |
|
| 44 | - " and et_n > 0 and et_avg > 0 " . |
|
| 45 | - " and host.id = host_app_version.host_id " . |
|
| 40 | + $query = "select et_avg, host.on_frac, host.active_frac, host.gpu_active_frac, app_version.plan_class ". |
|
| 41 | + " from DBNAME.host_app_version, DBNAME.host, DBNAME.app_version ". |
|
| 42 | + " where host_app_version.app_version_id = app_version.id ". |
|
| 43 | + " and app_version.appid = $app->id ". |
|
| 44 | + " and et_n > 0 and et_avg > 0 ". |
|
| 45 | + " and host.id = host_app_version.host_id ". |
|
| 46 | 46 | " and host.expavg_credit > 10"; |
| 47 | 47 | $result = $db->do_query($query); |
| 48 | 48 | $a = array(); |
@@ -55,15 +55,15 @@ discard block |
||
| 55 | 55 | $av *= $x->active_frac; |
| 56 | 56 | } |
| 57 | 57 | } else { |
| 58 | - $av = $x->on_frac * $x->active_frac; |
|
| 58 | + $av = $x->on_frac*$x->active_frac; |
|
| 59 | 59 | } |
| 60 | - $a[] = (1/$x->et_avg) * $av; |
|
| 60 | + $a[] = (1/$x->et_avg)*$av; |
|
| 61 | 61 | } |
| 62 | 62 | _mysql_free_result($result); |
| 63 | 63 | sort($a); |
| 64 | 64 | $n = count($a); |
| 65 | 65 | $f = fopen("../../size_census_".$app->name, "w"); |
| 66 | - for ($i=1; $i<$app->n_size_classes; $i++) { |
|
| 66 | + for ($i = 1; $i < $app->n_size_classes; $i++) { |
|
| 67 | 67 | $k = (int)(($i*$n)/$app->n_size_classes); |
| 68 | 68 | fprintf($f, "%e\n", $a[$k]); |
| 69 | 69 | } |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | |
| 73 | 73 | echo "Starting: ", time_str(time()), "\n"; |
| 74 | 74 | |
| 75 | -if ($argc == 2 && $argv[1]=="--all_apps") { |
|
| 75 | +if ($argc == 2 && $argv[1] == "--all_apps") { |
|
| 76 | 76 | $apps = BoincApp::enum("deprecated=0"); |
| 77 | 77 | } else { |
| 78 | 78 | $apps = BoincApp::enum("deprecated=0 and n_size_classes>1"); |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | \***********************************************************************/ |
| 28 | 28 | |
| 29 | 29 | $limit = get_int('limit', true); |
| 30 | -if (! $limit > 0 ) $limit = 30; |
|
| 30 | +if (!$limit > 0) $limit = 30; |
|
| 31 | 31 | |
| 32 | 32 | |
| 33 | 33 | |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | echo "<input class=\"btn btn-default\" type=\"submit\" value=\"Display\">\n"; |
| 49 | 49 | echo "</form>\n"; |
| 50 | 50 | |
| 51 | -$query="SELECT * FROM user ORDER BY create_time DESC LIMIT $limit"; |
|
| 51 | +$query = "SELECT * FROM user ORDER BY create_time DESC LIMIT $limit"; |
|
| 52 | 52 | $result = _mysql_query($query); |
| 53 | 53 | if (_mysql_num_rows($result) < 1) { |
| 54 | 54 | echo "There are no new users."; |
@@ -66,8 +66,8 @@ discard block |
||
| 66 | 66 | $joined = time_str($row->create_time); |
| 67 | 67 | $email_validated = $row->email_validated; |
| 68 | 68 | |
| 69 | - $team_name=""; |
|
| 70 | - if($row->teamid > 0){ |
|
| 69 | + $team_name = ""; |
|
| 70 | + if ($row->teamid > 0) { |
|
| 71 | 71 | $team = BoincTeam::lookup_id($row->teamid); |
| 72 | 72 | $team_name = $team->name; |
| 73 | 73 | } |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | if ($special_bits != "0") { |
| 81 | 81 | for ($i = 0; $i < 7; $i++) { |
| 82 | 82 | $bit = substr($special_bits, $i, 1); |
| 83 | - if ($bit == '1'){ |
|
| 83 | + if ($bit == '1') { |
|
| 84 | 84 | if (!empty($roles)) { |
| 85 | 85 | $roles .= ", "; |
| 86 | 86 | } |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | // Banished? |
| 96 | 96 | if (!empty($user->banished_until)) { |
| 97 | 97 | $dt = $user->banished_until - time(); |
| 98 | - if( $dt > 0 ) { |
|
| 98 | + if ($dt > 0) { |
|
| 99 | 99 | $x = "<span style=\"color: #ff0000\">Currently banished</span>"; |
| 100 | 100 | } |
| 101 | 101 | else { |
@@ -117,5 +117,5 @@ discard block |
||
| 117 | 117 | |
| 118 | 118 | admin_page_tail(); |
| 119 | 119 | |
| 120 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
| 120 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
| 121 | 121 | ?> |
@@ -100,7 +100,7 @@ |
||
| 100 | 100 | $dom->preserveWhiteSpace = false; |
| 101 | 101 | $dom->formatOutput = true; |
| 102 | 102 | $dom->loadXML($prefs->asXML()); |
| 103 | - return $dom->saveXML($dom->documentElement) . "\n"; |
|
| 103 | + return $dom->saveXML($dom->documentElement)."\n"; |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | function update_user($user, $app_id) { |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | |
| 35 | 35 | function cleanup_orphan_threads() { |
| 36 | 36 | $threads = BoincThread::enum(""); |
| 37 | - foreach($threads as $thread) { |
|
| 37 | + foreach ($threads as $thread) { |
|
| 38 | 38 | $forum = BoincForum::lookup_id($thread->forum); |
| 39 | 39 | if (!$forum) { |
| 40 | 40 | cleanup_thread($thread); |