-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.html
89 lines (70 loc) · 3.36 KB
/
code.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Victoria Schleis</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap -->
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<!-- Bootstrap js -->
<script src="./js/bootstrap.min.js"></script>
<!-- style.css -->
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<header class="page-header" id="headerbackground">
<div class="container py-4">
<div class="row">
<div class="col">
<h1 class="mb-1">Victoria Schleis</h1>
<p class="mb-0"><font color="#5A5A5A">Postdoctoral Reseach Associate in Mathematics at Durham University</font></p>
</div>
</div>
</div>
</header>
<nav class="navbar navbar-expand navbar-dark bg-dark">
<div class="container">
<ul class="navbar-nav ml-2 mr-auto">
<li class="nav-item"><a class="nav-link" href="./index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="./research.html">Publications</a></li>
<li class="nav-item active"><a class="nav-link" href="./code.html">Code</a></li>
<li class="nav-item"><a class="nav-link" href="./talks.html">Talks</a></li>
<li class="nav-item"><a class="nav-link" href="./activities.html">Travel</a></li>
<li class="nav-item"><a class="nav-link" href="./coauthors.html">Coauthors</a></li>
<li class="nav-item"><a class="nav-link" href="./links.html">Miscellaneous</a></li>
</ul>
</div>
</nav>
<!-- PAGE BEGIN -->
<div class="container my-5">
<div class="row">
<div class="col-md-6 mb-4">
<p>
<h4> Code libraries </h4>
Some of my projects have associated code files. You can find them below.
</p>
</div>
</div>
</div>
<div class="container my-4">
<div class="row">
<div class="col">
<h4> Quiver Dressians </h4>
Here you can find some code accompanying our project on quiver Dressians.</br>
The input file for gfan to compute the quiver Dressian in Example 4.4 can be downloaded <a href="https://victoriaschleis.github.io/quivers_material/counterex_for_gfan" download> here</a>.
The polyhedral complex can be computed using gfan_tropicalintersection, the output can be downloaded <a href="https://victoriaschleis.github.io/quivers_material/out_dressian" download> here</a>. </br>
Here you find the tropicalizations of all different primary components of the tropical Grassmannian of Example 4.4 as a <a href="https://victoriaschleis.github.io/quivers_material/assoc_primes.zip" download> zip-file</a>.</br>
The example for a quiver Dressian with nonrealizable points in ambient dimension 3 for fields with trivial valuation can be found <a href="https://victoriaschleis.github.io/quivers_material/example_n_3.pdf" download> here</a>.
</div>
</div>
</div>
<div class="container my-4">
<div class="row">
<div class="col">
<h4> Recovery of plane curves from branch points </h4>
The project has an <a target="_blank" href="https://mathrepo.mis.mpg.de/BranchPoints/index.html">associated MathRepo page</a> containing all code.
</div>
</div>
</div>
</body>
</html>