Skip to content

Commit ddcb816

Browse files
committed
updated headers
1 parent 91b9082 commit ddcb816

33 files changed

Lines changed: 89 additions & 1 deletion

include/jres_solver/jres_solver.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @author popmonkey+jres@gmail.com
3-
* @file jres_solver.hpp
3+
* @file include/jres_solver/jres_solver.hpp
44
* @brief Public C-API for the JRES Solver Library.
55
*
66
* This file defines the C-style interface for the solver,

src/analysis/capacity_analyzer.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* @author popmonkey+jres@gmail.com
3+
* @file src/analysis/capacity_analyzer.cpp
4+
* @brief Implementation of capacity analysis.
5+
*/
16
#include "capacity_analyzer.hpp"
27
#include <sstream>
38
#include <iomanip>

src/analysis/capacity_analyzer.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* @author popmonkey+jres@gmail.com
3+
* @file src/analysis/capacity_analyzer.hpp
4+
* @brief Header for capacity analysis.
5+
*/
16
#pragma once
27
#include "../jres_internal_types.hpp"
38

src/analysis/solver_diagnostics.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* @author popmonkey+jres@gmail.com
3+
* @file src/analysis/solver_diagnostics.cpp
4+
* @brief Implementation of solver diagnostics.
5+
*/
16
#include "solver_diagnostics.hpp"
27
#include "capacity_analyzer.hpp"
38
#include "../utils/date_utils.hpp"

src/analysis/solver_diagnostics.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* @author popmonkey+jres@gmail.com
3+
* @file src/analysis/solver_diagnostics.hpp
4+
* @brief Header for solver diagnostics.
5+
*/
16
#pragma once
27

38
#include "../jres_internal_types.hpp"

src/constraints/balancing.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* @author popmonkey+jres@gmail.com
3+
* @file src/constraints/balancing.cpp
4+
* @brief Implementation of load balancing constraints.
5+
*/
16
#include "balancing.hpp"
27
#include "Highs.h"
38
#include <cmath>

src/constraints/balancing.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* @author popmonkey+jres@gmail.com
3+
* @file src/constraints/balancing.hpp
4+
* @brief Header for load balancing constraints.
5+
*/
16
#pragma once
27
#include "../jres_internal_types.hpp"
38
#include <map>

src/constraints/max_busy_time.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* @author popmonkey+jres@gmail.com
3+
* @file src/constraints/max_busy_time.cpp
4+
* @brief Implementation of maximum busy time constraints.
5+
*/
16
#include "max_busy_time.hpp"
27
#include "Highs.h"
38
#include <chrono>

src/constraints/max_busy_time.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* @author popmonkey+jres@gmail.com
3+
* @file src/constraints/max_busy_time.hpp
4+
* @brief Header for maximum busy time constraints.
5+
*/
16
#pragma once
27
#include "../jres_internal_types.hpp"
38
#include <map>

src/constraints/minimum_rest.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* @author popmonkey+jres@gmail.com
3+
* @file src/constraints/minimum_rest.cpp
4+
* @brief Implementation of minimum rest constraints.
5+
*/
16
#include "minimum_rest.hpp"
27
#include "Highs.h"
38
#include <algorithm>

0 commit comments

Comments
 (0)