Displaying 2 results from an estimated 2 matches for "rotd".
Did you mean:
road
2006 Jun 06
6
Ping/Traceroute problem in 1 of 4 links
...40
traceroute to 200.164.106.140 (200.164.106.140), 30 hops max, 38 byte
packets
1 192.168.200.1 (192.168.200.1) 0.242 ms 0.147 ms 0.090 ms
2 200.164.225.99 (200.164.225.99) 1.136 ms 1.046 ms 1.061 ms
3 200.164.230.13 (200.164.230.13) 28.184 ms 15.046 ms 50.394 ms
4 Fa1-0-0.VPT-PB-ROTD-01.telemar.net.br (200.164.205.130) 47.771 ms
15.670 ms 54.701 ms
5 200.164.197.133 (200.164.197.133) 54.496 ms 45.505 ms 32.174 ms
6 PO6-0.NBV-PE-ROTN-01.telemar.net.br (200.223.131.13) 57.197 ms 53.778
ms 49.041 ms
7 PO5-0-0.BDEA-BA-ROTB-01.telemar.net.br (200.223.131.66) 61.078...
2007 Aug 30
0
bug in DEoptim package
...)
st <- con$strategy - 5 ## binomial crossover
else {
st <- con$strategy ## exponential crossover
mui <- sort(t(mui)) ## transpose, collect 1's in each column
for (i in 1:NP) {
n <- floor(runif(1) * d)
if (n > 0) {
rtd <- (rotd + n) %% d
mui[,i] <- mui[rtd + 1,i] ## rotate column i by n
}
}
mui <- t(mui) ## transpose back
}
sort returns a 1-dimensional vector, this causes the error in the
following indexing operators.
This also shows, that any strategy value from 1 through 5 wil...