-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsoftware.html
161 lines (94 loc) · 4.67 KB
/
software.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html>
<head>
<title>Machine Proof Group: Open Source Software</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/group.css">
</head>
<body>
<div class="container">
<!-- This is a bit nasty, but it basically says be a column first, and on larger screens be a spaced out row -->
<div class="header d-flex
flex-column
flex-md-row justify-content-md-between">
<a href="/" class="">
<img src="/img/logo.jpg"
alt="CMU Lettermark" id="logo">
</a>
<ul class="nav nav-pills justify-content-center">
<li class="nav-item">
<a class="nav-link "
href="/index.html">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link "
href="/index.html#people">
People
</a>
</li>
<li class="nav-item">
<a class="nav-link "
href="/research.html">
Research
</a>
</li>
<li class="nav-item">
<a class="nav-link "
href="/publications.html">
Publications
</a>
</li>
<li class="nav-item">
<a class="nav-link active"
href="/software.html">
Software
</a>
</li>
</ul>
</div>
<h1>Open Source Software</h1>
<table class="table">
<tbody>
<tr>
<td class = "softwareimage" align=center>
<img alt="OmegaProof_v1"
title="OmegaProof_v1"
src="/img/software-image/OOP-v1.png"
height=170>
</td>
<td class="software">
<span class="softtitle">
<strong><big><a href="https://github.com/OmegaProof_v1">OmegaProof_v1</a></strong></big>.
</span><br />
<span class="authors">
<strong>Tuo Leng, Xiaokai Zhang, etc</strong>.
</span>
<span class="note">
<br />
An end to end autonomous proof net for Eculid Geometry Problem
</span>
</td>
</tr>
</tbody>
</table>
<div class="footer">
<p>
Our Group is primarily based in the Shanghai University Computer Engineering Science Department, with additional affiliations with Artificial Intelligence Institute.
<p>
<a href="https://www.shu.edu/legal/">Legal Info</a>
</div>
</div> <!-- /container -->
<!-- Support retina images. -->
<script type="text/javascript"
src="/js/srcset-polyfill.js"></script>
</body>
</html>