@@ -159,16 +159,16 @@ function computeAcrossHypothesis!(
159159 activehypo = hyporecipe. activehypo
160160 certainidx = hyporecipe. certainidx
161161
162- @assert ccwl. certainhypo == hyporecipe. certainidx " expected hyporecipe.certainidx to be the same as cached in ccw"
162+ @assert ccwl. hyporecipe . certainhypo == hyporecipe. certainidx " expected hyporecipe.certainidx to be the same as cached in ccw"
163163 for (hypoidx, vars) in activehypo
164164 count += 1
165165
166166 # now do hypothesis specific
167167 if sfidx in certainidx && hypoidx != 0 || hypoidx in certainidx || hypoidx == sfidx
168168 # hypo case hypoidx, sfidx = $hypoidx, $sfidx
169169 # for i = 1:Threads.nthreads()
170- resize! (ccwl. activehypo, length (vars))
171- ccwl. activehypo[:] = vars
170+ resize! (ccwl. hyporecipe . activehypo, length (vars))
171+ ccwl. hyporecipe . activehypo[:] = vars
172172 # end
173173
174174 addEntr = view (destinationVarVals, allelements[count])
@@ -346,7 +346,7 @@ function evalPotentialSpecific(
346346 # nullSurplus see #1517
347347 runnullhypo = maximum ((ccwl. nullhypo, nullSurplus))
348348 hyporecipe =
349- _prepareHypoRecipe! (ccwl. hypotheses, maxlen, sfidx, length (variables), isinit, runnullhypo)
349+ _prepareHypoRecipe! (ccwl. hyporecipe . hypotheses, maxlen, sfidx, length (variables), isinit, runnullhypo)
350350
351351 # get manifold add operations
352352 # TODO , make better use of dispatch, see JuliaRobotics/RoME.jl#244
@@ -358,7 +358,7 @@ function evalPotentialSpecific(
358358
359359 # perform the numeric solutions on the indicated elements
360360 # FIXME consider repeat solve as workaround for inflation off-zero
361- # NOTE alternate use of ccwl.certainidx to hyporecipe, certainidx = ccwl.certainhypo
361+ # NOTE alternate use of ccwl.certainidx to hyporecipe, certainidx = ccwl.hyporecipe. certainhypo
362362 computeAcrossHypothesis! (
363363 ccwl,
364364 hyporecipe,
@@ -425,7 +425,7 @@ function evalPotentialSpecific(
425425 # nullSurplus see #1517
426426 runnullhypo = maximum ((ccwl. nullhypo, nullSurplus))
427427 hyporecipe =
428- _prepareHypoRecipe! (ccwl. hypotheses, maxlen, sfidx, length (variables), isinit, runnullhypo)
428+ _prepareHypoRecipe! (ccwl. hyporecipe . hypotheses, maxlen, sfidx, length (variables), isinit, runnullhypo)
429429
430430 # get solvefor manifolds, FIXME ON FIRE, upgrade to new Manifolds.jl
431431 mani = getManifold (variables[sfidx])
0 commit comments