Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 107
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 234
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 235
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 236
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 237
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 238
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 239
/* Assuming nodes have been positioned by dot, this adds a rank
* attribute by placing all nodes with the same y value on a specific
* integer rank.
* If the graph has rankdir=LR, x and y are flipped.
*/
BEG_G {
double x,y;
int lv[double];
int r, rk[double];
int flip;
if (isAttr($,"G","rankdir") && $.rankdir=="LR") flip = 1;
}
N {
sscanf($.pos,"%f,%f",&x,&y);
if (flip) lv[x] = 1;
else lv[y] = 1;
}
BEG_G {
r = 0;
if (flip)
forr (lv[x]) {
rk[x] = r++;
/* printf (2, "rk[%f] = %d\n", y, rk[y]); */
}
else
forr (lv[y]) {
rk[y] = r++;
/* printf (2, "rk[%f] = %d\n", y, rk[y]); */
}
}
N {
sscanf($.pos,"%f,%f",&x,&y);
/* printf(2, "node %s y %f rk %d\n", $.name, y, rk[y]); */
if (flip) $.rank = sprintf("%d", rk[x]);
else $.rank = sprintf("%d", rk[y]);
}