lily
Results
2
issues of
lily
Mistakenly using . rather than : in LuaArray will lead to crash. ```lua local x = slua.Array(UEnums.EpropertyClass.Int) x.Num() ``` ```c++ int LuaArray::Num(lua_State* L) { CheckUD(LuaArray,L,1); return LuaObject::push(L,UD->num()); } ``` `CheckUD`...
I want to specify the mutator and variator when testing. ```python problem = DTLZ2(3) algorithm = MOEAD(problem,variator=SBX) ``` an error occurred ``` y3.5.egg/platypus/algorithms.py", line 594, in iterate AttributeError: type object...