Skip to content

Commit 594123a

Browse files
committed
chore: add SPDX headers to source files
1 parent 6ca68b7 commit 594123a

16 files changed

Lines changed: 16 additions & 0 deletions

File tree

src/julia/RobotVacuum/src/RobotVacuum.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
12
"""
23
RobotVacuum
34

src/julia/RobotVacuum/src/environment.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
12
"""
23
Environment simulation for robot vacuum testing.
34
"""

src/julia/RobotVacuum/src/pathplanning.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
12
"""
23
Path planning algorithms for robot vacuum navigation.
34
"""

src/julia/RobotVacuum/src/robot.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
12
"""
23
Robot vacuum cleaner core implementation.
34
"""

src/julia/RobotVacuum/src/simulator.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
12
"""
23
Simulation controller for robot vacuum cleaner.
34
"""

src/julia/RobotVacuum/src/slam.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
12
"""
23
SLAM (Simultaneous Localization and Mapping) implementation.
34
"""

src/julia/RobotVacuum/src/types.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
12
"""
23
Core types and data structures for robot vacuum simulation.
34
"""

src/julia/main.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env julia
2+
# SPDX-License-Identifier: PMPL-1.0-or-later
23

34
"""
45
Robot Vacuum Cleaner Simulator - Command Line Interface

src/rust/src/environment.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: PMPL-1.0-or-later
12
//! Environment simulation
23
34
use ndarray::Array2;

src/rust/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: PMPL-1.0-or-later
12
//! Robot Vacuum Cleaner - High Performance Rust Implementation
23
//!
34
//! This library provides a high-performance implementation of a robot vacuum

0 commit comments

Comments
 (0)