From 0fbceaebdb21772a370523bcd5db182f1898e7a5 Mon Sep 17 00:00:00 2001 From: Tomas Date: Tue, 18 Jun 2024 19:37:09 +0200 Subject: [PATCH] adding MIT license to floortile --- floortile/domain.pddl | 1 + floortile/floortile-generator.py | 4 ++++ floortile/license | 21 +++++++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 floortile/license diff --git a/floortile/domain.pddl b/floortile/domain.pddl index deb03054..e2b78294 100644 --- a/floortile/domain.pddl +++ b/floortile/domain.pddl @@ -1,5 +1,6 @@ ;;Created by Tomas de la Rosa ;;Domain for painting floor tiles with two colors +;;See MIT License attached (define (domain floor-tile) (:requirements :typing :action-costs) diff --git a/floortile/floortile-generator.py b/floortile/floortile-generator.py index 28eebb8b..656e2c8c 100755 --- a/floortile/floortile-generator.py +++ b/floortile/floortile-generator.py @@ -1,4 +1,8 @@ #!/usr/bin/env python +# +# Author: Tomas de la Rosa +# See MIT License attached +# import sys import random diff --git a/floortile/license b/floortile/license new file mode 100644 index 00000000..de89086b --- /dev/null +++ b/floortile/license @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2013 Tomas de la Rosa + +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. \ No newline at end of file