Commit 770a7801 authored by Hyun Soo  Kim's avatar Hyun Soo Kim
Browse files

initial commit

parent 3b15cc60
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+35 −0
Original line number Diff line number Diff line
### IntelliJ IDEA ###
out/
!**/src/main/**/out/
!**/src/test/**/out/

### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store

.idea/
md.jar


md

0 → 100755
+3 −0
Original line number Diff line number Diff line
#!/bin/bash

java -jar md.jar 54550 $1 $2 &

molecule/acetylene.txt

0 → 100644
+12 −0
Original line number Diff line number Diff line
actylene
4
C
C
H
H
0 1
0 1
0 1
0 2
1 3

molecule_database.iml

0 → 100644
+11 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
  <component name="NewModuleRootManager" inherit-compiler-output="true">
    <exclude-output />
    <content url="file://$MODULE_DIR$">
      <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
    </content>
    <orderEntry type="inheritedJdk" />
    <orderEntry type="sourceFolder" forTests="false" />
  </component>
</module>
 No newline at end of file
+3 −0
Original line number Diff line number Diff line
Manifest-Version: 1.0
Main-Class: Main
Loading