We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c26c7c1 commit 37e313cCopy full SHA for 37e313c
greedy_algorithms/job_sequencing_algorithm.cpp
@@ -83,9 +83,9 @@ namespace greedy_algorithms {
83
* @brief A structure to represent a job
84
*/
85
struct Job {
86
- char id; // Job Id
87
- int dead; // Deadline of job
88
- int profit; // Profit earned if job is completed before deadline
+ char id; ///< Job Id
+ int dead; ///< Deadline of job
+ int profit; ///< Profit earned if job is completed before deadline
89
};
90
91
// Custom sorting helper struct which is used for sorting
0 commit comments