Skip to content

Commit

Permalink
Merge pull request #2547 from ProvableHQ/update-license
Browse files Browse the repository at this point in the history
[Chore] Update license headers
  • Loading branch information
aleojohn authored Sep 10, 2024
2 parents 02994a1 + 812d6e8 commit 49bc10e
Show file tree
Hide file tree
Showing 1,404 changed files with 2,876 additions and 1,462 deletions.
3 changes: 2 additions & 1 deletion .license_header
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/benches/crypto_hash/poseidon.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/benches/fft/fft.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/benches/msm/variable_base.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/benches/snark/varuna.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/cuda/build.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
21 changes: 10 additions & 11 deletions algorithms/cuda/cuda/polynomial.cuh
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
// Copyright (C) 2019-2022 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// The snarkVM library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// The snarkVM library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// http://www.apache.org/licenses/LICENSE-2.0

// You should have received a copy of the GNU General Public License
// along with the snarkVM library. If not, see <https://www.gnu.org/licenses/>.
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef __POLYNOMIAL_CUH__
#define __POLYNOMIAL_CUH__
Expand Down
21 changes: 10 additions & 11 deletions algorithms/cuda/cuda/snarkvm.cu
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
// Copyright (C) 2019-2022 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// The snarkVM library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// The snarkVM library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// http://www.apache.org/licenses/LICENSE-2.0

// You should have received a copy of the GNU General Public License
// along with the snarkVM library. If not, see <https://www.gnu.org/licenses/>.
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include <cuda.h>

Expand Down
21 changes: 10 additions & 11 deletions algorithms/cuda/cuda/snarkvm_api.cu
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
// Copyright (C) 2019-2022 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// The snarkVM library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// The snarkVM library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// http://www.apache.org/licenses/LICENSE-2.0

// You should have received a copy of the GNU General Public License
// along with the snarkVM library. If not, see <https://www.gnu.org/licenses/>.
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include <cuda.h>

Expand Down
21 changes: 10 additions & 11 deletions algorithms/cuda/src/lib.c
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
// Copyright (C) 2019-2022 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// The snarkVM library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// The snarkVM library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// http://www.apache.org/licenses/LICENSE-2.0

// You should have received a copy of the GNU General Public License
// along with the snarkVM library. If not, see <https://www.gnu.org/licenses/>.
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
3 changes: 2 additions & 1 deletion algorithms/cuda/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/examples/msm.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/crypto_hash/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/crypto_hash/poseidon.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/crypto_hash/sha256.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/crypto_hash/tests.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/errors.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/fft/domain.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/fft/evaluations.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/fft/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/fft/polynomial/dense.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/fft/polynomial/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/fft/polynomial/multiplier.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/fft/polynomial/sparse.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/fft/tests.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion algorithms/src/msm/fixed_base.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
Loading

0 comments on commit 49bc10e

Please sign in to comment.