Skip to content

Commit 22b5668

Browse files
authored
Add license headers (#151)
1 parent bcafec7 commit 22b5668

35 files changed

+204
-6
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2019 Gilles Peiffer, Benoît Legat, Sascha Timme
1+
Copyright (c) 2019 MutableArithmetics.jl contributors
22

33
Mozilla Public License, version 2.0
44

docs/make.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2019 MutableArithmetics.jl contributors
2+
#
3+
# This Source Code Form is subject to the terms of the Mozilla Public License,
4+
# v.2.0. If a copy of the MPL was not distributed with this file, You can obtain
5+
# one at http://mozilla.org/MPL/2.0/.
6+
17
using Documenter, MutableArithmetics
28

39
makedocs(;

src/MutableArithmetics.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Copyright 2019, Gilles Peiffer, Benoît Legat, Sascha Timme, and contributors
2-
# This Source Code Form is subject to the terms of the Mozilla Public
3-
# License, v. 2.0. If a copy of the MPL was not distributed with this
4-
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
5-
#############################################################################
1+
# Copyright (c) 2019 MutableArithmetics.jl contributors
2+
#
3+
# This Source Code Form is subject to the terms of the Mozilla Public License,
4+
# v.2.0. If a copy of the MPL was not distributed with this file, You can obtain
5+
# one at http://mozilla.org/MPL/2.0/.
66

77
module MutableArithmetics
88

src/Test/Test.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2019 MutableArithmetics.jl contributors
2+
#
3+
# This Source Code Form is subject to the terms of the Mozilla Public License,
4+
# v.2.0. If a copy of the MPL was not distributed with this file, You can obtain
5+
# one at http://mozilla.org/MPL/2.0/.
6+
17
module Test
28

39
import MutableArithmetics

src/Test/array.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2019 MutableArithmetics.jl contributors
2+
#
3+
# This Source Code Form is subject to the terms of the Mozilla Public License,
4+
# v.2.0. If a copy of the MPL was not distributed with this file, You can obtain
5+
# one at http://mozilla.org/MPL/2.0/.
6+
17
function matrix_vector_division_test(x)
28
if size(x) == (3, 3)
39
A = [

src/Test/config.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2019 MutableArithmetics.jl contributors
2+
#
3+
# This Source Code Form is subject to the terms of the Mozilla Public License,
4+
# v.2.0. If a copy of the MPL was not distributed with this file, You can obtain
5+
# one at http://mozilla.org/MPL/2.0/.
6+
17
macro test_suite(setname, subsets = false)
28
testname = Symbol(string(setname) * "_test")
39
testdict = Symbol(string(testname) * "s")

src/Test/generic.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2019 MutableArithmetics.jl contributors
2+
#
3+
# This Source Code Form is subject to the terms of the Mozilla Public License,
4+
# v.2.0. If a copy of the MPL was not distributed with this file, You can obtain
5+
# one at http://mozilla.org/MPL/2.0/.
6+
17
#!format:off
28
# TODO(odow): JuliaFormatter cannot format this file for some reason?
39

src/Test/int.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2019 MutableArithmetics.jl contributors
2+
#
3+
# This Source Code Form is subject to the terms of the Mozilla Public License,
4+
# v.2.0. If a copy of the MPL was not distributed with this file, You can obtain
5+
# one at http://mozilla.org/MPL/2.0/.
6+
17
function int_add_test(::Type{T}) where {T}
28
@testset "add_to! / add!" begin
39
@test MA.mutability(T, +, T, T) isa MA.IsMutable

src/Test/quadratic.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2019 MutableArithmetics.jl contributors
2+
#
3+
# This Source Code Form is subject to the terms of the Mozilla Public License,
4+
# v.2.0. If a copy of the MPL was not distributed with this file, You can obtain
5+
# one at http://mozilla.org/MPL/2.0/.
6+
17
function quadratic_division_test(w, x, y, z)
28
@test_rewrite w / 2
39
a = 7

src/Test/scalar.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2019 MutableArithmetics.jl contributors
2+
#
3+
# This Source Code Form is subject to the terms of the Mozilla Public License,
4+
# v.2.0. If a copy of the MPL was not distributed with this file, You can obtain
5+
# one at http://mozilla.org/MPL/2.0/.
6+
17
function iszero_test(x)
28
x_copy = x
39

0 commit comments

Comments
 (0)