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
If it can be split so that factor solver data only contains the working memory serialization becomes easy as solver data is just ignored and rehydrated when unpacked for use by the solver and there can possibly be no PackedFactor.
What fields are always constant?
DF: Almost everything in FactorNodeData is constant and can move to FactorFDG -- but, need to checking how CCW is built upon FactorCompute
Include CI test for more complicated factor type such as (i.e. not in Distributions.jl):
Can we build factor data (w.r.t. the compute part FactorOperationalMemory/CCW) lazily from DFG and only "inflate" when used in IIF. That is, move reconstFactorData out of DFG.
TODO...
'constant' in this case means not changed by the solver
In other words:
Should we move non FactorOperationalMemory to DFGFactor:
Maybe: fnc, multihypo, nullhypo, inflation ?
that way we split solverData <: FactorOperationalMemory and constants
The text was updated successfully, but these errors were encountered:
Note on CCW: currently, only hyporecipe.certainhypo and usrfnc! are pulled out of CCW to be persisted, the rest are thrown away.
Also code TODO: improve _createCCW for hypotheses and certainhypo field recovery when deserializing reconstitute from stored data
If it can be split so that factor solver data only contains the working memory serialization becomes easy as solver data is just ignored and rehydrated when unpacked for use by the solver and there can possibly be no PackedFactor.
FactorNodeData
is constant and can move to FactorFDG -- but, need to checking howCCW
is built uponFactorCompute
reconstFactorData
out of DFG.'constant' in this case means not changed by the solver
In other words:
Should we move non FactorOperationalMemory to DFGFactor:
Maybe: fnc, multihypo, nullhypo, inflation ?
that way we split solverData <: FactorOperationalMemory and constants
The text was updated successfully, but these errors were encountered: