search for: local_opts

Displaying 2 results from an estimated 2 matches for "local_opts".

Did you mean: local_bits
2011 Jan 26
2
changes in rspec 2.4 break ci_reporter
Hi I use the ci_reporter gem for builds on my CI machine (hudson). Prior to rspec 2.4, environment options would override commandline options. So the gem used this to change the formatter and require its files. In 2.4, that order has been reversed. the thing is 2.4 supports multiple formatters, so there is another suggestion. RSpec::Core::ConfigurationOptions def parse_options
2013 Jan 03
0
help with NLOPTR
...########### Optimization ############################## x0 = c(0.5, 0.5, 4200, 4200, 4200) ## start values lb=c(0, 0, 0,0,0) ## lower bound for each variable in vector x for objective function, Inf for infinity ub=c(1, 1, L, L, L) ## upper bound for each variable in vector x for objective function local_opts=list("algorithm" = "NLOPT_LN_AUGLAG", "xtol_rel"=0.01) ## some algorithms in nloptr require a local algorithm too opts=list("algorithm" = "NLOPT_GN_ISRES", "xtol_rel" = 0.01, "maxeval"=100000 ,"local_opts" = local_opts,...