Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Descartes Research
librede
Commits
048c1f87
Commit
048c1f87
authored
May 05, 2015
by
Simon Spinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add license headers.
parent
9104aa3c
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
260 additions
and
0 deletions
+260
-0
tools.descartes.librede.estimation.tests/src/tools/descartes/librede/models/observation/functions/ErlangCEquationTest.java
...ede/models/observation/functions/ErlangCEquationTest.java
+26
-0
tools.descartes.librede.estimation.tests/src/tools/descartes/librede/models/state/ConstantStateModelTest.java
...escartes/librede/models/state/ConstantStateModelTest.java
+26
-0
tools.descartes.librede.estimation.tests/src/tools/descartes/librede/repository/CachingRepositoryCursorTest.java
...artes/librede/repository/CachingRepositoryCursorTest.java
+26
-0
tools.descartes.librede.estimation/src/tools/descartes/librede/approach/LiuOptimizationApproach.java
...s/descartes/librede/approach/LiuOptimizationApproach.java
+26
-0
tools.descartes.librede.estimation/src/tools/descartes/librede/models/observation/functions/ErlangCEquation.java
...librede/models/observation/functions/ErlangCEquation.java
+26
-0
tools.descartes.librede.estimation/src/tools/descartes/librede/repository/CachingRepositoryCursor.java
...descartes/librede/repository/CachingRepositoryCursor.java
+26
-0
tools.descartes.librede.linalg/src/tools/descartes/librede/linalg/Indices.java
...de.linalg/src/tools/descartes/librede/linalg/Indices.java
+26
-0
tools.descartes.librede.linalg/src/tools/descartes/librede/linalg/backend/IndicesImpl.java
...c/tools/descartes/librede/linalg/backend/IndicesImpl.java
+26
-0
tools.descartes.librede.linalg/src/tools/descartes/librede/linalg/backend/RangeImpl.java
...src/tools/descartes/librede/linalg/backend/RangeImpl.java
+26
-0
tools.descartes.librede.linalg/src/tools/descartes/librede/linalg/backend/colt/ColtHelper.java
...ols/descartes/librede/linalg/backend/colt/ColtHelper.java
+26
-0
No files found.
tools.descartes.librede.estimation.tests/src/tools/descartes/librede/models/observation/functions/ErlangCEquationTest.java
View file @
048c1f87
/**
* ==============================================
* LibReDE : Library for Resource Demand Estimation
* ==============================================
*
* (c) Copyright 2013-2014, by Simon Spinner and Contributors.
*
* Project Info: http://www.descartes-research.net/
*
* All rights reserved. This software is made available under the terms of the
* Eclipse Public License (EPL) v1.0 as published by the Eclipse Foundation
* http://www.eclipse.org/legal/epl-v10.html
*
* This software 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 Eclipse Public License (EPL)
* for more details.
*
* You should have received a copy of the Eclipse Public License (EPL)
* along with this software; if not visit http://www.eclipse.org or write to
* Eclipse Foundation, Inc., 308 SW First Avenue, Suite 110, Portland, 97204 USA
* Email: license (at) eclipse.org
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*/
package
tools.descartes.librede.models.observation.functions
;
import
static
org
.
fest
.
assertions
.
api
.
Assertions
.
assertThat
;
...
...
tools.descartes.librede.estimation.tests/src/tools/descartes/librede/models/state/ConstantStateModelTest.java
View file @
048c1f87
/**
* ==============================================
* LibReDE : Library for Resource Demand Estimation
* ==============================================
*
* (c) Copyright 2013-2014, by Simon Spinner and Contributors.
*
* Project Info: http://www.descartes-research.net/
*
* All rights reserved. This software is made available under the terms of the
* Eclipse Public License (EPL) v1.0 as published by the Eclipse Foundation
* http://www.eclipse.org/legal/epl-v10.html
*
* This software 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 Eclipse Public License (EPL)
* for more details.
*
* You should have received a copy of the Eclipse Public License (EPL)
* along with this software; if not visit http://www.eclipse.org or write to
* Eclipse Foundation, Inc., 308 SW First Avenue, Suite 110, Portland, 97204 USA
* Email: license (at) eclipse.org
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*/
package
tools.descartes.librede.models.state
;
import
static
org
.
fest
.
assertions
.
api
.
Assertions
.
assertThat
;
...
...
tools.descartes.librede.estimation.tests/src/tools/descartes/librede/repository/CachingRepositoryCursorTest.java
View file @
048c1f87
/**
* ==============================================
* LibReDE : Library for Resource Demand Estimation
* ==============================================
*
* (c) Copyright 2013-2014, by Simon Spinner and Contributors.
*
* Project Info: http://www.descartes-research.net/
*
* All rights reserved. This software is made available under the terms of the
* Eclipse Public License (EPL) v1.0 as published by the Eclipse Foundation
* http://www.eclipse.org/legal/epl-v10.html
*
* This software 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 Eclipse Public License (EPL)
* for more details.
*
* You should have received a copy of the Eclipse Public License (EPL)
* along with this software; if not visit http://www.eclipse.org or write to
* Eclipse Foundation, Inc., 308 SW First Avenue, Suite 110, Portland, 97204 USA
* Email: license (at) eclipse.org
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*/
package
tools.descartes.librede.repository
;
import
static
org
.
fest
.
assertions
.
api
.
Assertions
.
assertThat
;
...
...
tools.descartes.librede.estimation/src/tools/descartes/librede/approach/LiuOptimizationApproach.java
View file @
048c1f87
/**
* ==============================================
* LibReDE : Library for Resource Demand Estimation
* ==============================================
*
* (c) Copyright 2013-2014, by Simon Spinner and Contributors.
*
* Project Info: http://www.descartes-research.net/
*
* All rights reserved. This software is made available under the terms of the
* Eclipse Public License (EPL) v1.0 as published by the Eclipse Foundation
* http://www.eclipse.org/legal/epl-v10.html
*
* This software 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 Eclipse Public License (EPL)
* for more details.
*
* You should have received a copy of the Eclipse Public License (EPL)
* along with this software; if not visit http://www.eclipse.org or write to
* Eclipse Foundation, Inc., 308 SW First Avenue, Suite 110, Portland, 97204 USA
* Email: license (at) eclipse.org
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*/
package
tools.descartes.librede.approach
;
import
java.util.Arrays
;
...
...
tools.descartes.librede.estimation/src/tools/descartes/librede/models/observation/functions/ErlangCEquation.java
View file @
048c1f87
/**
* ==============================================
* LibReDE : Library for Resource Demand Estimation
* ==============================================
*
* (c) Copyright 2013-2014, by Simon Spinner and Contributors.
*
* Project Info: http://www.descartes-research.net/
*
* All rights reserved. This software is made available under the terms of the
* Eclipse Public License (EPL) v1.0 as published by the Eclipse Foundation
* http://www.eclipse.org/legal/epl-v10.html
*
* This software 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 Eclipse Public License (EPL)
* for more details.
*
* You should have received a copy of the Eclipse Public License (EPL)
* along with this software; if not visit http://www.eclipse.org or write to
* Eclipse Foundation, Inc., 308 SW First Avenue, Suite 110, Portland, 97204 USA
* Email: license (at) eclipse.org
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*/
package
tools.descartes.librede.models.observation.functions
;
import
static
tools
.
descartes
.
librede
.
linalg
.
LinAlg
.
matrix
;
...
...
tools.descartes.librede.estimation/src/tools/descartes/librede/repository/CachingRepositoryCursor.java
View file @
048c1f87
/**
* ==============================================
* LibReDE : Library for Resource Demand Estimation
* ==============================================
*
* (c) Copyright 2013-2014, by Simon Spinner and Contributors.
*
* Project Info: http://www.descartes-research.net/
*
* All rights reserved. This software is made available under the terms of the
* Eclipse Public License (EPL) v1.0 as published by the Eclipse Foundation
* http://www.eclipse.org/legal/epl-v10.html
*
* This software 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 Eclipse Public License (EPL)
* for more details.
*
* You should have received a copy of the Eclipse Public License (EPL)
* along with this software; if not visit http://www.eclipse.org or write to
* Eclipse Foundation, Inc., 308 SW First Avenue, Suite 110, Portland, 97204 USA
* Email: license (at) eclipse.org
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*/
package
tools.descartes.librede.repository
;
import
java.util.HashMap
;
...
...
tools.descartes.librede.linalg/src/tools/descartes/librede/linalg/Indices.java
View file @
048c1f87
/**
* ==============================================
* LibReDE : Library for Resource Demand Estimation
* ==============================================
*
* (c) Copyright 2013-2014, by Simon Spinner and Contributors.
*
* Project Info: http://www.descartes-research.net/
*
* All rights reserved. This software is made available under the terms of the
* Eclipse Public License (EPL) v1.0 as published by the Eclipse Foundation
* http://www.eclipse.org/legal/epl-v10.html
*
* This software 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 Eclipse Public License (EPL)
* for more details.
*
* You should have received a copy of the Eclipse Public License (EPL)
* along with this software; if not visit http://www.eclipse.org or write to
* Eclipse Foundation, Inc., 308 SW First Avenue, Suite 110, Portland, 97204 USA
* Email: license (at) eclipse.org
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*/
package
tools.descartes.librede.linalg
;
public
abstract
class
Indices
{
...
...
tools.descartes.librede.linalg/src/tools/descartes/librede/linalg/backend/IndicesImpl.java
View file @
048c1f87
/**
* ==============================================
* LibReDE : Library for Resource Demand Estimation
* ==============================================
*
* (c) Copyright 2013-2014, by Simon Spinner and Contributors.
*
* Project Info: http://www.descartes-research.net/
*
* All rights reserved. This software is made available under the terms of the
* Eclipse Public License (EPL) v1.0 as published by the Eclipse Foundation
* http://www.eclipse.org/legal/epl-v10.html
*
* This software 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 Eclipse Public License (EPL)
* for more details.
*
* You should have received a copy of the Eclipse Public License (EPL)
* along with this software; if not visit http://www.eclipse.org or write to
* Eclipse Foundation, Inc., 308 SW First Avenue, Suite 110, Portland, 97204 USA
* Email: license (at) eclipse.org
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*/
package
tools.descartes.librede.linalg.backend
;
import
java.util.Arrays
;
...
...
tools.descartes.librede.linalg/src/tools/descartes/librede/linalg/backend/RangeImpl.java
View file @
048c1f87
/**
* ==============================================
* LibReDE : Library for Resource Demand Estimation
* ==============================================
*
* (c) Copyright 2013-2014, by Simon Spinner and Contributors.
*
* Project Info: http://www.descartes-research.net/
*
* All rights reserved. This software is made available under the terms of the
* Eclipse Public License (EPL) v1.0 as published by the Eclipse Foundation
* http://www.eclipse.org/legal/epl-v10.html
*
* This software 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 Eclipse Public License (EPL)
* for more details.
*
* You should have received a copy of the Eclipse Public License (EPL)
* along with this software; if not visit http://www.eclipse.org or write to
* Eclipse Foundation, Inc., 308 SW First Avenue, Suite 110, Portland, 97204 USA
* Email: license (at) eclipse.org
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*/
package
tools.descartes.librede.linalg.backend
;
import
tools.descartes.librede.linalg.Indices
;
...
...
tools.descartes.librede.linalg/src/tools/descartes/librede/linalg/backend/colt/ColtHelper.java
View file @
048c1f87
/**
* ==============================================
* LibReDE : Library for Resource Demand Estimation
* ==============================================
*
* (c) Copyright 2013-2014, by Simon Spinner and Contributors.
*
* Project Info: http://www.descartes-research.net/
*
* All rights reserved. This software is made available under the terms of the
* Eclipse Public License (EPL) v1.0 as published by the Eclipse Foundation
* http://www.eclipse.org/legal/epl-v10.html
*
* This software 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 Eclipse Public License (EPL)
* for more details.
*
* You should have received a copy of the Eclipse Public License (EPL)
* along with this software; if not visit http://www.eclipse.org or write to
* Eclipse Foundation, Inc., 308 SW First Avenue, Suite 110, Portland, 97204 USA
* Email: license (at) eclipse.org
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*/
package
tools.descartes.librede.linalg.backend.colt
;
import
cern.colt.matrix.DoubleMatrix2D
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment