Skip to content

Commit 3f448d2

Browse files
authored
Fix directory workflow (#596)
1 parent 1fd579c commit 3f448d2

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

.github/workflows/directory_workflow.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: build_directory_md
2-
on: push
2+
on:
3+
push:
4+
branches: [master]
35

46
jobs:
57
MainSequence:
@@ -21,5 +23,5 @@ jobs:
2123
- name: Commit DIRECTORY.md
2224
run: |
2325
git add DIRECTORY.md
24-
git commit -m "Update DIRECTORY.md" || true
26+
git commit -m "Update DIRECTORY.md [skip actions]" || true
2527
git push origin HEAD:$GITHUB_REF || true
File renamed without changes.

src/graph/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mod ford_fulkerson;
1414
mod graph_enumeration;
1515
mod heavy_light_decomposition;
1616
mod kosaraju;
17-
mod lee;
17+
mod lee_breadth_first_search;
1818
mod lowest_common_ancestor;
1919
mod minimum_spanning_tree;
2020
mod prim;
@@ -40,7 +40,7 @@ pub use self::ford_fulkerson::ford_fulkerson;
4040
pub use self::graph_enumeration::enumerate_graph;
4141
pub use self::heavy_light_decomposition::HeavyLightDecomposition;
4242
pub use self::kosaraju::kosaraju;
43-
pub use self::lee::lee;
43+
pub use self::lee_breadth_first_search::lee;
4444
pub use self::lowest_common_ancestor::{LowestCommonAncestorOffline, LowestCommonAncestorOnline};
4545
pub use self::minimum_spanning_tree::kruskal;
4646
pub use self::prim::{prim, prim_with_start};
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mod mae_loss;
2-
mod mse_loss;
1+
mod mean_absolute_error_loss;
2+
mod mean_squared_error_loss;
33

4-
pub use self::mae_loss::mae_loss;
5-
pub use self::mse_loss::mse_loss;
4+
pub use self::mean_absolute_error_loss::mae_loss;
5+
pub use self::mean_squared_error_loss::mse_loss;

0 commit comments

Comments
 (0)