Skip to content
Snippets Groups Projects
Commit 99e8aae4 authored by Bernhard Johannes Berger's avatar Bernhard Johannes Berger
Browse files

Moved definition file for surrogate.simple

parent 7e93f90f
No related branches found
No related tags found
1 merge request!2Allow arrays, instance literals and stuff in initialisation of attribute...
<beans xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/beans_2_0.xsd"
bean-discovery-mode="annotated"
version="2.0">
</beans>
\ No newline at end of file
/**
* An exemplary identity function.
*/
type identity extends surrogate {
}
type 'linear-regression' extends surrogate {
intercept : float;
slope : float;
}
type 'simple-quadratic-regression' extends surrogate {
intercept : float;
slope : float;
}
\ No newline at end of file
import "definitions" from de.evoal.surrogate.ml;
/**
* Simple surrogate functions.
*/
module de.evoal.surrogate.simple.ml {
/**
* An exemplary identity function.
*/
type identity extends surrogate {
}
type 'linear-regression' extends surrogate {
intercept : float;
slope : float;
}
type 'simple-quadratic-regression' extends surrogate {
intercept : float;
slope : float;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment