Skip to content
Snippets Groups Projects
Commit f73f9f0c authored by Bernhard Rumpe's avatar Bernhard Rumpe
Browse files

BR-sy

parent 60deffb4
No related branches found
No related tags found
No related merge requests found
Showing
with 38 additions and 19 deletions
<?xml version="1.0" encoding="UTF-8"?>
<!-- (c) https://github.com/MontiCore/monticore -->
<project version="4">
<component name="CompilerConfiguration">
<annotationProcessing>
......@@ -13,4 +14,4 @@
<module name="CmpLib" target="8" />
</bytecodeTargetLevel>
</component>
</project>
\ No newline at end of file
</project>
<?xml version="1.0" encoding="UTF-8"?>
<!-- (c) https://github.com/MontiCore/monticore -->
<project version="4">
<component name="Encoding">
<file url="file://$PROJECT_DIR$" charset="UTF-8" />
</component>
</project>
\ No newline at end of file
</project>
<?xml version="1.0" encoding="UTF-8"?>
<!-- (c) https://github.com/MontiCore/monticore -->
<project version="4">
<component name="MavenProjectsManager">
<option name="originalFiles">
......@@ -10,4 +11,4 @@
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_9" project-jdk-name="9" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/classes" />
</component>
</project>
\ No newline at end of file
</project>
<?xml version="1.0" encoding="UTF-8"?>
<!-- (c) https://github.com/MontiCore/monticore -->
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/CmpLib.iml" filepath="$PROJECT_DIR$/CmpLib.iml" />
</modules>
</component>
</project>
\ No newline at end of file
</project>
<?xml version="1.0" encoding="UTF-8"?>
<!-- (c) https://github.com/MontiCore/monticore -->
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
\ No newline at end of file
</project>
......@@ -86,4 +86,4 @@
<orderEntry type="library" name="Maven: org.javolution:javolution:5.2.3" level="project" />
<orderEntry type="library" name="Maven: de.monticore.lang.monticar:embedded-montiarc-math-generator:0.0.10-SNAPSHOT" level="project" />
</component>
</module>
\ No newline at end of file
</module>
# CmpLib
\ No newline at end of file
<!-- (c) https://github.com/MontiCore/monticore -->
# CmpLib
<?xml version="1.0" encoding="UTF-8"?>
<!-- (c) https://github.com/MontiCore/monticore -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
......@@ -251,4 +252,4 @@
</dependencies>
</project>
\ No newline at end of file
</project>
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.advancedLibrary.trigger;
import de.rwth.cmplib.basicLibrary.*;
......@@ -23,4 +24,4 @@ component SchmittTriggerQ (Q u1, Q u2) {
end
prevValue = outValue;
}
}
\ No newline at end of file
}
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.basicLibrary;
component And<N1 n=2> {
......@@ -12,4 +13,4 @@ component And<N1 n=2> {
end
out1 = val;
}
}
\ No newline at end of file
}
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.basicLibrary;
component Delay<T> (T value) {
......
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.basicLibrary;
component GreaterEquals<T> {
......@@ -13,4 +14,4 @@ component GreaterEquals<T> {
out1=0;
end
}
}
\ No newline at end of file
}
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.basicLibrary;
component Not {
......@@ -12,4 +13,4 @@ component Not {
out1=0;
end
}
}
\ No newline at end of file
}
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.basicLibrary;
component Or<N1 n=2> {
......@@ -12,4 +13,4 @@ component Or<N1 n=2> {
end
out1 = val;
}
}
\ No newline at end of file
}
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.advancedLibrary.trigger;
import de.rwth.cmplib.basicLibrary.*;
......@@ -14,4 +15,4 @@ component SchmittTriggerTest {
connect in1 -> st.inValue;
connect st.outValue -> out1;
}
\ No newline at end of file
}
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.advancedLibrary.trigger;
......@@ -6,4 +7,4 @@ stream SchmittTriggerTestStream for SchmittTriggerTest {
in1: 0.1 tick 0.5 tick 1 tick 0.9 tick 0.75 tick 0.6;
out1: false tick false tick true tick true tick true tick false;
}
\ No newline at end of file
}
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.basicLibrary;
component AndTest {
......@@ -12,4 +13,4 @@ component AndTest {
connect in2 -> andInstance.in1[2];
connect andInstance.out1 -> out1;
}
\ No newline at end of file
}
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.basicLibrary;
......@@ -7,4 +8,4 @@ stream AndTestStream for AndTest {
in2: true tick false tick true tick false;
out1: true tick false tick false tick false;
}
\ No newline at end of file
}
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.basicLibrary;
......@@ -7,4 +8,4 @@ stream AndTestStream2 for AndTest {
in2: true tick false;
out1: true tick false ;
}
\ No newline at end of file
}
/* (c) https://github.com/MontiCore/monticore */
package de.rwth.cmplib.basicLibrary;
component DelayTest {
......@@ -10,4 +11,4 @@ component DelayTest {
connect in1 -> delayInstanceZ.in1;
connect delayInstanceZ.out1 -> out1;
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment