Changed GPL lic to CC. Tidied imports.

这个提交包含在:
Craig Warren
2021-11-18 11:28:04 +00:00
父节点 81b866cd39
当前提交 f357609b3b
共有 5 个文件被更改,包括 17 次插入719 次删除

查看文件

@@ -1,31 +1,21 @@
# Authors: Iraklis Giannakis, and Sylwia Majchrowska
# E-mail: i.giannakis@ed.ac.uk
# Copyright (C) 2015-2021, Iraklis Giannakis and Sylwia Majchrowska
#
# This file is part of gprMax.
# This module is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License.
# To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/.
#
# gprMax 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.
#
# gprMax 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.
#
# You should have received a copy of the GNU General Public License
# along with gprMax. If not, see <http://www.gnu.org/licenses/>.
# Please use the attribution at http://dx.doi.org/10.1109/TAP.2014.2308549
import numpy as np
import os
from matplotlib import pylab as plt
import matplotlib.gridspec as gridspec
from pathlib import Path
import sys
import scipy.interpolate
import warnings
from pathlib import Path
from optimization import PSO_DLS, DA_DLS, DE_DLS
import matplotlib.gridspec as gridspec
import numpy as np
import scipy.interpolate
from matplotlib import pylab as plt
from optimization import DA_DLS, DE_DLS, PSO_DLS
class Relaxation(object):