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 general, headers should not be dependent upon other headers being included first. In admm.cpp, rearranging the order of those three headers causes compile time errors. Specifically, including admm.h (which is the desired order) prior to line_search.h and glmgen.h causes issues.
In general, headers should not be dependent upon other headers being included first. In
admm.cpp
, rearranging the order of those three headers causes compile time errors. Specifically, includingadmm.h
(which is the desired order) prior toline_search.h
andglmgen.h
causes issues.Attempted to fix by placing
#include "glmgen.h"
inadmm.h
, but this causes issues when building the trefide python package.See:
trefide/src/admm.cpp
Line 8 in f87fdf1
The text was updated successfully, but these errors were encountered: