diff --git a/QuadRope.Examples/Factorize.fs b/QuadRope.Examples/Factorize.fs index e49856e..f9f87ef 100644 --- a/QuadRope.Examples/Factorize.fs +++ b/QuadRope.Examples/Factorize.fs @@ -1,4 +1,25 @@ -module QuadRopes.Examples.Factorize +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk + +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: + +// * The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. + +// * The software is provided "as is", without warranty of any kind, +// express or implied, including but not limited to the warranties of +// merchantability, fitness for a particular purpose and +// noninfringement. In no event shall the authors or copyright holders be +// liable for any claim, damages or other liability, whether in an action +// of contract, tort or otherwise, arising from, out of or in connection +// with the software or the use or other dealings in the software. + +module QuadRopes.Examples.Factorize open QuadRopes open Types diff --git a/QuadRope.Examples/Fibonacci.fs b/QuadRope.Examples/Fibonacci.fs index 2992b0b..11b756b 100644 --- a/QuadRope.Examples/Fibonacci.fs +++ b/QuadRope.Examples/Fibonacci.fs @@ -1,4 +1,25 @@ -module QuadRopes.Examples.Fibonacci +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk + +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: + +// * The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. + +// * The software is provided "as is", without warranty of any kind, +// express or implied, including but not limited to the warranties of +// merchantability, fitness for a particular purpose and +// noninfringement. In no event shall the authors or copyright holders be +// liable for any claim, damages or other liability, whether in an action +// of contract, tort or otherwise, arising from, out of or in connection +// with the software or the use or other dealings in the software. + +module QuadRopes.Examples.Fibonacci open QuadRopes diff --git a/QuadRope.Examples/MatMult.fs b/QuadRope.Examples/MatMult.fs index 3156df6..79bef22 100644 --- a/QuadRope.Examples/MatMult.fs +++ b/QuadRope.Examples/MatMult.fs @@ -1,4 +1,25 @@ -module QuadRopes.Examples.MatMult +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk + +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: + +// * The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. + +// * The software is provided "as is", without warranty of any kind, +// express or implied, including but not limited to the warranties of +// merchantability, fitness for a particular purpose and +// noninfringement. In no event shall the authors or copyright holders be +// liable for any claim, damages or other liability, whether in an action +// of contract, tort or otherwise, arising from, out of or in connection +// with the software or the use or other dealings in the software. + +module QuadRopes.Examples.MatMult open QuadRopes diff --git a/QuadRope.Examples/Sieve.fs b/QuadRope.Examples/Sieve.fs index c5141a9..16916db 100644 --- a/QuadRope.Examples/Sieve.fs +++ b/QuadRope.Examples/Sieve.fs @@ -1,4 +1,25 @@ -module QuadRopes.Examples.Sieve +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk + +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: + +// * The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. + +// * The software is provided "as is", without warranty of any kind, +// express or implied, including but not limited to the warranties of +// merchantability, fitness for a particular purpose and +// noninfringement. In no event shall the authors or copyright holders be +// liable for any claim, damages or other liability, whether in an action +// of contract, tort or otherwise, arising from, out of or in connection +// with the software or the use or other dealings in the software. + +module QuadRopes.Examples.Sieve open QuadRopes diff --git a/QuadRope.Examples/SmithWaterman.fs b/QuadRope.Examples/SmithWaterman.fs index b3046a6..763617b 100644 --- a/QuadRope.Examples/SmithWaterman.fs +++ b/QuadRope.Examples/SmithWaterman.fs @@ -1,3 +1,24 @@ +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk + +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: + +// * The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. + +// * The software is provided "as is", without warranty of any kind, +// express or implied, including but not limited to the warranties of +// merchantability, fitness for a particular purpose and +// noninfringement. In no event shall the authors or copyright holders be +// liable for any claim, damages or other liability, whether in an action +// of contract, tort or otherwise, arising from, out of or in connection +// with the software or the use or other dealings in the software. + module QuadRopes.Examples.SmithWaterman open QuadRopes diff --git a/QuadRope.Examples/VanDerCorput.fs b/QuadRope.Examples/VanDerCorput.fs index 1a85c20..3a4d47b 100644 --- a/QuadRope.Examples/VanDerCorput.fs +++ b/QuadRope.Examples/VanDerCorput.fs @@ -1,4 +1,25 @@ -module QuadRopes.Examples.VanDerCorput +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk + +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: + +// * The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. + +// * The software is provided "as is", without warranty of any kind, +// express or implied, including but not limited to the warranties of +// merchantability, fitness for a particular purpose and +// noninfringement. In no event shall the authors or copyright holders be +// liable for any claim, damages or other liability, whether in an action +// of contract, tort or otherwise, arising from, out of or in connection +// with the software or the use or other dealings in the software. + +module QuadRopes.Examples.VanDerCorput open QuadRopes diff --git a/QuadRope.Object/QuadRope.Object.fs b/QuadRope.Object/QuadRope.Object.fs index 3368326..a0adbc1 100644 --- a/QuadRope.Object/QuadRope.Object.fs +++ b/QuadRope.Object/QuadRope.Object.fs @@ -1,4 +1,25 @@ -namespace QuadRopes.QuadRope.Object +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk + +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: + +// * The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. + +// * The software is provided "as is", without warranty of any kind, +// express or implied, including but not limited to the warranties of +// merchantability, fitness for a particular purpose and +// noninfringement. In no event shall the authors or copyright holders be +// liable for any claim, damages or other liability, whether in an action +// of contract, tort or otherwise, arising from, out of or in connection +// with the software or the use or other dealings in the software. + +namespace QuadRopes.QuadRope.Object open System diff --git a/QuadRope.Test/AssemblyInfo.fs b/QuadRope.Test/AssemblyInfo.fs index 62a1ad6..2333892 100644 --- a/QuadRope.Test/AssemblyInfo.fs +++ b/QuadRope.Test/AssemblyInfo.fs @@ -12,7 +12,7 @@ open System.Runtime.InteropServices [] [] [] -[] +[] [] [] diff --git a/QuadRope.Test/Gen.fs b/QuadRope.Test/Gen.fs index 4042eae..41f1ac7 100644 --- a/QuadRope.Test/Gen.fs +++ b/QuadRope.Test/Gen.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope.Test/Interesting.fs b/QuadRope.Test/Interesting.fs index d3484eb..7d44cfb 100644 --- a/QuadRope.Test/Interesting.fs +++ b/QuadRope.Test/Interesting.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope.Test/QuadRope.Parallel.fs b/QuadRope.Test/QuadRope.Parallel.fs index 8bd4670..efdc2c4 100644 --- a/QuadRope.Test/QuadRope.Parallel.fs +++ b/QuadRope.Test/QuadRope.Parallel.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope.Test/QuadRope.fs b/QuadRope.Test/QuadRope.fs index 93c1a64..a94f51f 100644 --- a/QuadRope.Test/QuadRope.fs +++ b/QuadRope.Test/QuadRope.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope.Test/Test.fs b/QuadRope.Test/Test.fs index b2256e4..885e025 100644 --- a/QuadRope.Test/Test.fs +++ b/QuadRope.Test/Test.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope.Test/Utils.fs b/QuadRope.Test/Utils.fs index 0a7a324..3f69912 100644 --- a/QuadRope.Test/Utils.fs +++ b/QuadRope.Test/Utils.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope/Array2D.Parallel.fs b/QuadRope/Array2D.Parallel.fs index a8586ad..c65d944 100644 --- a/QuadRope/Array2D.Parallel.fs +++ b/QuadRope/Array2D.Parallel.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope/Array2D.fs b/QuadRope/Array2D.fs index ec41ae6..5a633cf 100644 --- a/QuadRope/Array2D.fs +++ b/QuadRope/Array2D.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope/ArraySlice.fs b/QuadRope/ArraySlice.fs index 2f97d3f..213f173 100644 --- a/QuadRope/ArraySlice.fs +++ b/QuadRope/ArraySlice.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope/AssemblyInfo.fs b/QuadRope/AssemblyInfo.fs index f4ddeb4..6dc3c01 100644 --- a/QuadRope/AssemblyInfo.fs +++ b/QuadRope/AssemblyInfo.fs @@ -12,7 +12,7 @@ open System.Runtime.InteropServices [] [] [] -[] +[] [] [] diff --git a/QuadRope/Examples.fs b/QuadRope/Examples.fs index d7ca6d9..f190414 100644 --- a/QuadRope/Examples.fs +++ b/QuadRope/Examples.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope/QuadRope.Parallel.fs b/QuadRope/QuadRope.Parallel.fs index 9885ab7..7f51c24 100644 --- a/QuadRope/QuadRope.Parallel.fs +++ b/QuadRope/QuadRope.Parallel.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope/QuadRope.fs b/QuadRope/QuadRope.fs index f39a2c1..88fc363 100644 --- a/QuadRope/QuadRope.fs +++ b/QuadRope/QuadRope.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope/Target.fs b/QuadRope/Target.fs index b46e98c..0fecd5c 100644 --- a/QuadRope/Target.fs +++ b/QuadRope/Target.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope/Types.fs b/QuadRope/Types.fs index 230f57e..0d6c1b6 100644 --- a/QuadRope/Types.fs +++ b/QuadRope/Types.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/QuadRope/Utils.fs b/QuadRope/Utils.fs index ed64a37..b14c740 100644 --- a/QuadRope/Utils.fs +++ b/QuadRope/Utils.fs @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Florian Biermann, fbie@itu.dk +// Copyright (c) 2017 Florian Biermann, fbie@itu.dk // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the