You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In PR #139, in many places a single object const is replaced by two objects core_const and pmodel_const, and the developer also has to keep in mind which class (CoreConst or PModelConst) a particular constant belongs to when implementing functions. If PModelConst can inherit CoreConst, the code may be more concise (as only a single ConstantsClass object is needed in each function or method).
The text was updated successfully, but these errors were encountered:
In PR #139, in many places a single object
const
is replaced by two objectscore_const
andpmodel_const
, and the developer also has to keep in mind which class (CoreConst
orPModelConst
) a particular constant belongs to when implementing functions. IfPModelConst
can inheritCoreConst
, the code may be more concise (as only a singleConstantsClass
object is needed in each function or method).The text was updated successfully, but these errors were encountered: