Linux server1.hosting4iran.com 4.18.0-553.123.2.el8_10.x86_64 #1 SMP Thu May 7 15:28:41 EDT 2026 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.217.179
Domains : 326 Domain
User : satitravel
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
graphviz /
gvpr /
Delete
Unzip
Name
Size
Permission
Date
Action
addedges
291
B
-rw-r--r--
2024-04-06 12:47
addranks
830
B
-rw-r--r--
2024-04-06 12:47
addrings
1.29
KB
-rw-r--r--
2024-04-06 12:47
anon
422
B
-rw-r--r--
2024-04-06 12:47
attr
151
B
-rw-r--r--
2024-04-06 12:47
bb
997
B
-rw-r--r--
2024-04-06 12:47
bbox
532
B
-rw-r--r--
2024-04-06 12:47
binduce
1.14
KB
-rw-r--r--
2024-04-06 12:47
bipart
455
B
-rw-r--r--
2024-04-06 12:47
chkclusters
532
B
-rw-r--r--
2024-04-06 12:47
chkedges
916
B
-rw-r--r--
2024-04-06 12:47
cliptree
178
B
-rw-r--r--
2024-04-06 12:47
col
601
B
-rw-r--r--
2024-04-06 12:47
collapse
469
B
-rw-r--r--
2024-04-06 12:47
color
1.41
KB
-rw-r--r--
2024-04-06 12:47
cycle
560
B
-rw-r--r--
2024-04-06 12:47
dechain
264
B
-rw-r--r--
2024-04-06 12:47
deghist
351
B
-rw-r--r--
2024-04-06 12:47
deledges
116
B
-rw-r--r--
2024-04-06 12:47
delmulti
397
B
-rw-r--r--
2024-04-06 12:47
delnodes
249
B
-rw-r--r--
2024-04-06 12:47
depath
547
B
-rw-r--r--
2024-04-06 12:47
dijkstra
647
B
-rw-r--r--
2024-04-06 12:47
flatten
88
B
-rw-r--r--
2024-04-06 12:47
get-layers-list
277
B
-rw-r--r--
2024-04-06 12:47
group
791
B
-rw-r--r--
2024-04-06 12:47
histogram
319
B
-rw-r--r--
2024-04-06 12:47
indent
378
B
-rw-r--r--
2024-04-06 12:47
knbhd
1.2
KB
-rw-r--r--
2024-04-06 12:47
maxdeg
307
B
-rw-r--r--
2024-04-06 12:47
path
449
B
-rw-r--r--
2024-04-06 12:47
rotate
1.17
KB
-rw-r--r--
2024-04-06 12:47
scale
1.12
KB
-rw-r--r--
2024-04-06 12:47
scalexy
1.1
KB
-rw-r--r--
2024-04-06 12:47
span
139
B
-rw-r--r--
2024-04-06 12:47
topon
429
B
-rw-r--r--
2024-04-06 12:47
treetoclust
988
B
-rw-r--r--
2024-04-06 12:47
Save
Rename
/* Takes a graph laid out by twopi and adds rings. * Assumes ARGV[] = "root" "=" <rootname>, as output by twopi -v. * Usage: * twopi -v foo.dot > out 2> log * gvpr -f addrings.g -a"`grep root log`" out | neato -n2 ... */ BEG_G { graph_t og; edge_t e; node_t ctr = node($, ARGV[0]); double rs = 1.0; /* min. slack between the squares of two consecutive radii */ int cx, cy; int x, y; node_t n; int i, n_r; int d; int rads[int]; char* ctr_s = ctr.pos; sscanf (ctr_s, "%d,%d", &cx, &cy); if (hasAttr($, "ranksep")) { sscanf ($.ranksep, "%f", &rs); if (rs == 0.0) rs = 1.0; } rs *= 72; rs = 1.5*rs*rs; } N [$ != ctr] { sscanf ($.pos, "%d,%d", &x, &y); d = (x-cx)*(x-cx) + (y-cy)*(y-cy); for (rads[i]) { if ((rads[i]-rs <= d) && (d <= rads[i]+rs)) return; } n_r++; rads[n_r] = d; } END_G { og = copy (NULL, $); og.outputorder = "nodesfirst"; setDflt (og, "N", "label", "\\N"); for (rads[i]) { n = node(og, "ring_"+((string)i)); n.shape = "circle"; n.pos = ctr_s; n.style = ""; n.label = ""; d = rads[i]; n.width = sprintf("%f", sqrt(d)/36.0); } for (n=fstnode($);n;n = nxtnode(n)) clone (og, n); for (n=fstnode($);n;n = nxtnode(n)) for (e=fstedge(n);e;e = nxtedge(e,n)) clone (og, e); write(og); }