luca-scr / GA

An R package for optimization using genetic algorithms
http://luca-scr.github.io/GA/
91 stars 29 forks source link

Can not find function "parNames" #20

Closed ChiHangChen closed 5 years ago

ChiHangChen commented 6 years ago

I want to add progress bar in GA::ga function, so I paste the ga source code into my R script and modify it, but it shows error " can not find function parNames", and I cant find the source code of function "parNames".

luca-scr commented 6 years ago

parNames is not a function, it's a method associated to the S4 object 'ga'. You may want to take a look at the source code for its definition.

ChiHangChen commented 6 years ago

Thanks a million , I fix the problem.