Skip to content

Commit

Permalink
Break circular module dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
vgvassilev committed Nov 13, 2015
1 parent 41555f4 commit 233ee12
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
3 changes: 0 additions & 3 deletions math/quadp/inc/TQpProbBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@
#ifndef ROOT_TQpDataBase
#include "TQpDataBase.h"
#endif
#ifndef ROOT_TQpLinSolverBase
#include "TQpLinSolverBase.h"
#endif
#ifndef ROOT_TQpResidual
#include "TQpResidual.h"
#endif
Expand Down
5 changes: 2 additions & 3 deletions math/quadp/inc/TQpProbDens.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@
#ifndef ROOT_TQpVars
#include "TQpVar.h"
#endif
#ifndef ROOT_TQpLinSolverDens
#include "TQpLinSolverDens.h"
#endif

//////////////////////////////////////////////////////////////////////////
// //
Expand All @@ -62,6 +59,8 @@
// //
//////////////////////////////////////////////////////////////////////////

class TQpLinSolverBase;

class TQpProbDens : public TQpProbBase
{

Expand Down
3 changes: 0 additions & 3 deletions math/quadp/inc/TQpProbSparse.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@
#ifndef ROOT_TQpVars
#include "TQpVar.h"
#endif
#ifndef ROOT_TQpLinSolverSparse
#include "TQpLinSolverSparse.h"
#endif

//////////////////////////////////////////////////////////////////////////
// //
Expand Down
1 change: 1 addition & 0 deletions math/quadp/src/TQpProbDens.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@

#include "TQpProbDens.h"
#include "TMatrixD.h"
#include "TQpLinSolverDens.h"

//////////////////////////////////////////////////////////////////////////
// //
Expand Down
1 change: 1 addition & 0 deletions math/quadp/src/TQpProbSparse.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@

#include "TQpProbSparse.h"
#include "TMatrixD.h"
#include "TQpLinSolverSparse.h"

//////////////////////////////////////////////////////////////////////////
// //
Expand Down

0 comments on commit 233ee12

Please sign in to comment.