Skip to content

Commit 1f8ec3a

Browse files
author
João Gonçalves
committed
initialize
0 parents  commit 1f8ec3a

24 files changed

+80901
-0
lines changed

.classpath

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry combineaccessrules="false" kind="src" path="/Libraries"/>
10+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
11+
<attributes>
12+
<attribute name="module" value="true"/>
13+
<attribute name="maven.pomderived" value="true"/>
14+
</attributes>
15+
</classpathentry>
16+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
17+
<attributes>
18+
<attribute name="maven.pomderived" value="true"/>
19+
</attributes>
20+
</classpathentry>
21+
<classpathentry kind="output" path="target/classes"/>
22+
</classpath>

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.java linguist-detectable=true
2+
*.css linguist-detectable=false
3+
*.js linguist-detectable=false
4+
*.pl linguist-detectable=false
5+
*.htm* linguist-detectable=false
6+
*.xsl linguist-detectable=false
7+
*.xslt linguist-detectable=false

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.settings/
2+
/bin/
3+
/target/

.project

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>PatternMiner</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
21+
<nature>org.eclipse.jdt.core.javanature</nature>
22+
</natures>
23+
</projectDescription>

LICENSE

Lines changed: 437 additions & 0 deletions
Large diffs are not rendered by default.

config/columnsDescriptions.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
n:time
2+
n:relationTypes Number of Relations Types
3+
n:relationTypesStd Number of Relations Types (StdDev)
4+
n:cycles Number of Cycles
5+
n:patternEdges Number of Edges
6+
n:patternVertices Number of Vertices
7+
n:matches Number of Matches
8+
s:query
9+
s:pattern
10+
s:conceptVarMap
11+
s:hash HashCode

config/columnsTypes.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
n:time double
2+
n:relationTypes int
3+
n:relationTypesStd double
4+
n:cycles int
5+
n:patternEdges int
6+
n:patternVertices int
7+
n:matches double
8+
s:query string
9+
s:pattern string
10+
s:conceptVarMap map string string
11+
s:hash string

css/graph.css

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
graph {
2+
fill-color: rgba(0,0,0,0);
3+
}
4+
5+
node {
6+
fill-color: blue;
7+
fill-mode: none;
8+
size: 16px;
9+
stroke-mode: plain;
10+
stroke-width: 2px;
11+
stroke-color: rgba(0,0,0,0);
12+
13+
text-size: 24;
14+
text-color: blue;
15+
text-font: verdana;
16+
text-style: normal;
17+
text-alignment: center;
18+
}
19+
20+
node.blend {
21+
fill-color: #FF00FF;
22+
}
23+
24+
edge {
25+
fill-color: red;
26+
size: 2px;
27+
text-size: 24;
28+
text-color: black;
29+
shape: angle;
30+
text-font: verdana;
31+
text-style: normal;
32+
text-alignment: center;
33+
}
34+
35+
edge.red {
36+
fill-color: red;
37+
text-color: red;
38+
}

pom.xml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>jcfgonc.phd</groupId>
4+
<artifactId>pattern-miner</artifactId>
5+
<version>0.0.1-SNAPSHOT</version>
6+
<build>
7+
<sourceDirectory>src</sourceDirectory>
8+
<plugins>
9+
<plugin>
10+
<artifactId>maven-compiler-plugin</artifactId>
11+
<version>3.8.1</version>
12+
<configuration>
13+
<release>14</release>
14+
</configuration>
15+
</plugin>
16+
</plugins>
17+
</build>
18+
<dependencies>
19+
<dependency>
20+
<groupId>com.githhub.aaronbembenek</groupId>
21+
<artifactId>querykb</artifactId>
22+
<version>0.0.1-SNAPSHOT</version>
23+
</dependency>
24+
<dependency>
25+
<groupId>jcfgonc.phd</groupId>
26+
<artifactId>unolibrary</artifactId>
27+
<version>0.0.1-SNAPSHOT</version>
28+
</dependency>
29+
<dependency>
30+
<groupId>org.moeaframework</groupId>
31+
<artifactId>moeaframework</artifactId>
32+
<version>2.13</version>
33+
</dependency>
34+
<dependency>
35+
<groupId>org.apache.commons</groupId>
36+
<artifactId>commons-lang3</artifactId>
37+
<version>3.10</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.graphstream</groupId>
41+
<artifactId>gs-core</artifactId>
42+
<version>1.3</version>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.graphstream</groupId>
46+
<artifactId>gs-ui</artifactId>
47+
<version>1.3</version>
48+
</dependency>
49+
</dependencies>
50+
</project>

0 commit comments

Comments
 (0)