Skip to content

Commit

Permalink
Fix matlab bindings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Parno committed May 14, 2024
1 parent 595338a commit fc800dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/matlab/src/ConditionalMap_mex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ MEX_DEFINE(ConditionalMap_CoeffBounds) (int nlhs, mxArray* plhs[],
OutputArguments output(nlhs, plhs, 2);
const ConditionalMapMex& condMap = Session<ConditionalMapMex>::getConst(input.get(0));
Kokkos::View<double*, Kokkos::HostSpace> lb, ub;
std::tie(lb,ub) = condMap.CoeffBounds();
std::tie(lb,ub) = condMap.map_ptr->CoeffBounds();
auto lbvec = KokkosToVec(lb);
auto ubvec = KokkosToVec(ub);

Expand Down

0 comments on commit fc800dd

Please sign in to comment.