Added license header to source code files
This commit is contained in:
parent
cf9f47cecd
commit
bef5ca67b0
470 changed files with 6062 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,3 +1,4 @@
|
|||
/dist/
|
||||
/target/
|
||||
jsbml.log
|
||||
/bin/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
@rem ***************************************************************************
|
||||
@rem
|
||||
@rem This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
@rem for the latest version of iBioSim.
|
||||
@rem
|
||||
@rem Copyright (C) 2017 University of Utah
|
||||
@rem
|
||||
@rem This library is free software; you can redistribute it and/or modify it
|
||||
@rem under the terms of the Apache License. A copy of the license agreement is provided
|
||||
@rem in the file named "LICENSE.txt" included with this software distribution
|
||||
@rem and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
@rem
|
||||
@rem ***************************************************************************
|
||||
setlocal ENABLEDELAYEDEXPANSION
|
||||
set CLASSPATH="%ATACSGUI%\gui\dist\classes"
|
||||
for /f %%a IN ('dir /b "%ATACSGUI%\gui\lib\*.jar"') do call set CLASSPATH=!CLASSPATH!;"%ATACSGUI%\gui\lib\%%a"
|
||||
|
|
|
|||
13
bin/LEMA.bat
13
bin/LEMA.bat
|
|
@ -1,3 +1,16 @@
|
|||
@rem ***************************************************************************
|
||||
@rem
|
||||
@rem This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
@rem for the latest version of iBioSim.
|
||||
@rem
|
||||
@rem Copyright (C) 2017 University of Utah
|
||||
@rem
|
||||
@rem This library is free software; you can redistribute it and/or modify it
|
||||
@rem under the terms of the Apache License. A copy of the license agreement is provided
|
||||
@rem in the file named "LICENSE.txt" included with this software distribution
|
||||
@rem and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
@rem
|
||||
@rem ***************************************************************************
|
||||
setlocal ENABLEDELAYEDEXPANSION
|
||||
set CLASSPATH="%LEMA%\gui\dist\classes"
|
||||
for /f %%a IN ('dir /b "%LEMA%\gui\lib\*.jar"') do call set CLASSPATH=!CLASSPATH!;"%LEMA%\gui\lib\%%a"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/usr/bin/perl
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
|
||||
if ($#ARGV != 3){
|
||||
print "Usage: ./recheck_results.pl cutoff file_method_dot file_correct.dot file_output\n";
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/usr/bin/perl
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
|
||||
###############################################################################
|
||||
##
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/usr/bin/perl
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
|
||||
#This file writes the checked dot file.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/bin/bash
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
# This script attempts to find an existing installation of Java that meets a minimum version
|
||||
# requirement on a Linux machine. If it is successful, it will export a JAVA_HOME environment
|
||||
# variable that can be used by another calling script.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/usr/bin/perl -w
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
|
||||
use Getopt::Std;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/usr/bin/perl
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
|
||||
open (IN, "run-1.tsd");
|
||||
@in = <IN>;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/usr/bin/perl
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
|
||||
|
||||
$genenet_dir = $ARGV[0];
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
@rem ***************************************************************************
|
||||
@rem
|
||||
@rem This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
@rem for the latest version of iBioSim.
|
||||
@rem
|
||||
@rem Copyright (C) 2017 University of Utah
|
||||
@rem
|
||||
@rem This library is free software; you can redistribute it and/or modify it
|
||||
@rem under the terms of the Apache License. A copy of the license agreement is provided
|
||||
@rem in the file named "LICENSE.txt" included with this software distribution
|
||||
@rem and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
@rem
|
||||
@rem ***************************************************************************
|
||||
setlocal ENABLEDELAYEDEXPANSION
|
||||
set CLASSPATH="%BIOSIM%\gui\dist\classes"
|
||||
for /f %%a IN ('dir /b "%BIOSIM%\gui\lib\*.jar"') do call set CLASSPATH=!CLASSPATH!;"%BIOSIM%\gui\lib\%%a"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/bin/sh
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
scp $2.xml $1:/tmp/.
|
||||
scp $2.properties $1:/tmp/.
|
||||
ssh $1 "reb2sac --target.encoding=$3 /tmp/$2.xml"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/bin/sh
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
scp $3.lpn $1:/tmp/.
|
||||
ssh $1 "atacs $2 /tmp/$3.lpn"
|
||||
scp $1:"atacs.log" .
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/bin/sh
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
scp $2.lpn tang.ece.utah.edu:/tmp/.
|
||||
ssh tang.ece.utah.edu "/home/tang/myers/BioSim/bin/atacs $1 /tmp/$2.lpn"
|
||||
scp tang.ece.utah.edu:"atacs.log" .
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/bin/sh
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
scp $1.xml tang.ece.utah.edu:/tmp/.
|
||||
scp $1.properties tang.ece.utah.edu:/tmp/.
|
||||
ssh tang.ece.utah.edu "setenv LD_LIBRARY_PATH /home/tang/myers/BioSim/lib64;/home/tang/myers/BioSim/bin/reb2sac --target.encoding=$2 /tmp/$1.xml"
|
||||
|
|
|
|||
13
makeATACS.sh
13
makeATACS.sh
|
|
@ -1,4 +1,17 @@
|
|||
#!/bin/sh
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
cp bin/*.py /Applications/ATACS.app/Contents/Resources/bin/.
|
||||
cp bin/*.pyc /Applications/ATACS.app/Contents/Resources/bin/.
|
||||
cp bin/atacs /Applications/ATACS.app/Contents/Resources/bin/.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/bin/sh
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
cp bin/*.py /Applications/ATACS.app/Contents/Resources/bin/.
|
||||
cp bin/*.pyc /Applications/ATACS.app/Contents/Resources/bin/.
|
||||
cp bin/atacs /Applications/ATACS.app/Contents/Resources/bin/.
|
||||
|
|
|
|||
13
makeLEMA.sh
13
makeLEMA.sh
|
|
@ -1,4 +1,17 @@
|
|||
#!/bin/sh
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
cp bin/*.py /Applications/LEMA.app/Contents/Resources/bin/.
|
||||
cp bin/*.pyc /Applications/LEMA.app/Contents/Resources/bin/.
|
||||
cp bin/atacs /Applications/LEMA.app/Contents/Resources/bin/.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,17 @@
|
|||
#!/bin/sh
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
cp bin/*.py /Applications/LEMA.app/Contents/Resources/bin/.
|
||||
cp bin/*.pyc /Applications/LEMA.app/Contents/Resources/bin/.
|
||||
cp bin/reb2sac.mac64 /Applications/iBioSim.app/Contents/Resources/bin/reb2sac
|
||||
|
|
|
|||
13
makedmg.sh
13
makedmg.sh
|
|
@ -1,4 +1,17 @@
|
|||
#!/bin/sh
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
cp bin/*.pl /Applications/iBioSim.app/Contents/Resources/bin/.
|
||||
cp bin/reb2sac /Applications/iBioSim.app/Contents/Resources/bin/.
|
||||
cp bin/GeneNet /Applications/iBioSim.app/Contents/Resources/bin/.
|
||||
|
|
|
|||
13
makedmg64.sh
13
makedmg64.sh
|
|
@ -1,4 +1,17 @@
|
|||
#!/bin/sh
|
||||
#*******************************************************************************
|
||||
#
|
||||
# This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
# for the latest version of iBioSim.
|
||||
#
|
||||
# Copyright (C) 2017 University of Utah
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the Apache License. A copy of the license agreement is provided
|
||||
# in the file named "LICENSE.txt" included with this software distribution
|
||||
# and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
#
|
||||
#*******************************************************************************
|
||||
cp bin/*.pl /Applications/iBioSim.app/Contents/Resources/bin/.
|
||||
cp bin/reb2sac.mac64 /Applications/iBioSim.app/Contents/Resources/bin/reb2sac
|
||||
cp bin/GeneNet.mac64 /Applications/iBioSim.app/Contents/Resources/bin/GeneNet
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim;
|
||||
|
||||
import java.awt.Dimension;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.flattened;
|
||||
|
||||
import java.io.File;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.flattened;
|
||||
|
||||
import flanagan.math.Fmath;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.flattened;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.flattened;
|
||||
|
||||
import gnu.trove.map.hash.TIntDoubleHashMap;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.flattened;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.flattened;
|
||||
|
||||
public class SpeciesDimensions {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.flattened;
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical;
|
||||
|
||||
import java.io.BufferedWriter;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.io;
|
||||
|
||||
import java.io.BufferedWriter;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
public abstract class AbstractHierarchicalNode
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
public class ArrayDimensionNode extends VariableNode
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
public class ConstraintNode extends HierarchicalNode
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
import odk.lang.FastMath;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
public class SpeciesReferenceNode extends VariableNode
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.math;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.methods;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.methods;
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.methods;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.methods;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.methods;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.model;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
package backend.analysis.dynamicsim.hierarchical.states;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
package backend.analysis.dynamicsim.hierarchical.states;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
package backend.analysis.dynamicsim.hierarchical.states;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
package backend.analysis.dynamicsim.hierarchical.states;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
package backend.analysis.dynamicsim.hierarchical.states;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.states;
|
||||
|
||||
public class VectorState extends HierarchicalState{
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
package backend.analysis.dynamicsim.hierarchical.states;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util;
|
||||
|
||||
import java.io.File;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.comp;
|
||||
|
||||
import java.util.Comparator;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.comp;
|
||||
|
||||
import backend.analysis.dynamicsim.hierarchical.model.HierarchicalModel;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.interpreter;
|
||||
|
||||
import java.util.Map;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.interpreter;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.scripts;
|
||||
|
||||
import java.io.File;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
import org.sbml.jsbml.ASTNode;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
import org.sbml.jsbml.ASTNode;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
import java.util.Map;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
import org.sbml.jsbml.ASTNode;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
import org.sbml.jsbml.KineticLaw;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
import org.sbml.jsbml.ASTNode;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
import java.util.List;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
import java.util.Map;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
import org.sbml.jsbml.SpeciesReference;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.dynamicsim.hierarchical.util.setup;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.fba;
|
||||
|
||||
import java.io.BufferedWriter;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.markov;
|
||||
|
||||
import javax.swing.JProgressBar;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.markov;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.markov;
|
||||
|
||||
import javax.swing.JProgressBar;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.markov;
|
||||
|
||||
import java.io.BufferedWriter;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.markov;
|
||||
|
||||
public class TransientMarkovMatrixMultiplyThread extends Thread {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.analysis.util;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.AMSModel;
|
||||
|
||||
import java.util.*;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.AMSModel;
|
||||
|
||||
import java.io.*;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.AMSModel;
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.genenet;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.genenet;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.genenet;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.genenet;
|
||||
|
||||
import java.io.File;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.genenet;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.genenet;
|
||||
|
||||
import java.io.File;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.genenet;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.genenet;
|
||||
|
||||
public class Thresholds
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.parameterestimator;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.parameterestimator.methods;
|
||||
|
||||
public interface AbstractEstimator
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.parameterestimator.methods.pedi;
|
||||
|
||||
public class GeneProduct
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.parameterestimator.methods.pedi;
|
||||
|
||||
public interface PEDIBridge
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.parameterestimator.methods.sres;
|
||||
|
||||
public class EvolutionMethodSetting
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
|
||||
* for the latest version of iBioSim.
|
||||
*
|
||||
* Copyright (C) 2017 University of Utah
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the Apache License. A copy of the license agreement is provided
|
||||
* in the file named "LICENSE.txt" included with this software distribution
|
||||
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
|
||||
*
|
||||
*******************************************************************************/
|
||||
package backend.learn.parameterestimator.methods.sres;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue