Skip to content

Commit

Permalink
Apply spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
lsk567 committed Nov 11, 2024
1 parent ff1224a commit 3380a43
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void runStaticSchedulerTests() {
.update(StaticSchedulerType.StaticScheduler.LB));
// Keep the logging level at INFO because logs from the long
// running tests (e.g., RaceConditionCheck.lf) could overflow
// the buffer and stall the process.
// the buffer and stall the process.
LoggingProperty.INSTANCE.override(config, LogLevel.INFO);
return true;
},
Expand Down
21 changes: 10 additions & 11 deletions core/src/main/java/org/lflang/analyses/dag/Dag.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,19 @@ public class Dag {
/** Start of the Dag task set, also the head of the Dag */
public DagNode start;

/**
* End of the Dag task set. This end comes from a local hyperperiod, but
* here we also interpret it as a physical deadline, because we want
* to start the next iteration of the Dag (i.e., hyperperiod) with zero lag.
/**
* End of the Dag task set. This end comes from a local hyperperiod, but here we also interpret it
* as a physical deadline, because we want to start the next iteration of the Dag (i.e.,
* hyperperiod) with zero lag.
*/
public DagNode end;

/**
* Tail of the Dag. This might not be the end of the Dag task set
* because of the SYNC node generated by deadlines. We only store this
* because this is the actual tail node of the graph, though it might
* not contribute any code in code generation.
*
* FIXME: Is this tail used anywhere?
/**
* Tail of the Dag. This might not be the end of the Dag task set because of the SYNC node
* generated by deadlines. We only store this because this is the actual tail node of the graph,
* though it might not contribute any code in code generation.
*
* <p>FIXME: Is this tail used anywhere?
*/
public DagNode tail;

Expand Down

0 comments on commit 3380a43

Please sign in to comment.