TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Data structures as topological spaces (2002) [pdf]

170 点作者 cpp_frog大约 1 年前

9 条评论

mjhay大约 1 年前
Related to this, AlgebraicJulia has been doing a lot with applying concepts from algebra and category theory to data analysis and modelling.<p><a href="https:&#x2F;&#x2F;www.algebraicjulia.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.algebraicjulia.org&#x2F;</a><p>There&#x27;s some blog posts that are also interesting:<p><a href="https:&#x2F;&#x2F;blog.algebraicjulia.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;blog.algebraicjulia.org&#x2F;</a>
Verdex大约 1 年前
It feels like the following PDF better expresses what they&#x27;re trying to accomplish.<p><a href="http:&#x2F;&#x2F;mgs.spatial-computing.org&#x2F;PUBLICATIONS&#x2F;lami-RR72--computational-models-for-dynamical-structure.pdf" rel="nofollow">http:&#x2F;&#x2F;mgs.spatial-computing.org&#x2F;PUBLICATIONS&#x2F;lami-RR72--com...</a><p>As far as I can tell, they&#x27;re trying to model things like chemical reactions (and other stuff) where given a bunch of &quot;stuff&quot; in some solution it will combine with other &quot;stuff&quot; if it&#x27;s in the same topological neighborhood (which I think is basically the idea that ALL of the &quot;stuff&quot; doesn&#x27;t have to be next to each other b&#x2F;c if you let a solution just sit there eventually reactions are going to react).<p>It&#x27;s kind of neat, but their website seems to indicate that it is not being actively supported. Or at the very least they don&#x27;t seem to have any reason to make publicly available documentation after since around 2010.<p>EDIT: So for example, you could use their &quot;trans&quot; transform primitive to implement conway&#x27;s game of life by defining the birth rule as a pattern of an empty cell with three alive cells and a transform that results in the empty cell being alive and the alive cells being the same. The death rules in similar fashion. Neighbor here would be defined as being physically next to something (but the point is that because this is about topologies, then neighbor doesn&#x27;t have to mean physical proximity ... although I&#x27;m not sure where that&#x27;s defined ... in the collection maybe?).<p>And then you just run the transform on a collection with some initial state.<p>EDIT EDIT: Yeah, the notion of neighbor is defined on the collection. This allows you to use the same transform on different collection types and get the appropriate result.<p>ALSO checkout figure 5 in the PDF I linked because it&#x27;s an incredibly concise description of exactly what they&#x27;re doing.<p>EDIT EDIT EDIT:<p>This also feels vaguely similar to what the Egison language is doing with their pattern matching. Documentation for Egison feels better at least to me.<p><a href="https:&#x2F;&#x2F;www.egison.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.egison.org&#x2F;</a><p>However, I don&#x27;t think that egison allows you to define arbitrary notions of neighbors in a collection like MGS does. But I haven&#x27;t exactly tried to use it very much.
评论 #39404518 未加载
评论 #39403986 未加载
评论 #39402699 未加载
hackandthink大约 1 年前
Stephen Wolfram&#x27;s ruliad seems to be some sort of concurrent topological computations.<p>There are some beautiful pictures.<p><a href="https:&#x2F;&#x2F;content.wolfram.com&#x2F;sites&#x2F;43&#x2F;2021&#x2F;11&#x2F;1110swimg46.png" rel="nofollow">https:&#x2F;&#x2F;content.wolfram.com&#x2F;sites&#x2F;43&#x2F;2021&#x2F;11&#x2F;1110swimg46.png</a><p><a href="https:&#x2F;&#x2F;writings.stephenwolfram.com&#x2F;2021&#x2F;11&#x2F;the-concept-of-the-ruliad&#x2F;" rel="nofollow">https:&#x2F;&#x2F;writings.stephenwolfram.com&#x2F;2021&#x2F;11&#x2F;the-concept-of-t...</a>
评论 #39400692 未加载
misja111大约 1 年前
How is this fundamentally different than considering data structures as graphs?
评论 #39396920 未加载
whosthatguy大约 1 年前
&gt; 1. selects a sub-collection B of A whose elements match the path pattern β,<p>&gt; 2. computes a new collection C as a function f of B and its neighbors,<p>&gt; 3. and specifies the insertion of C in place of B into A.<p>This sounds a lot like the presentation of comonads as directed containers (e.g. <a href="https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;1408.5809" rel="nofollow">https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;1408.5809</a>).
评论 #39402616 未加载
reuben364大约 1 年前
I&#x27;m left confused as to what the gluing in the rule replacement is. Must the boundary of a rule match on both sides? Also what examples there would be of what an example would of having topology that is not induced from a graph if it is at all possible.
andoando大约 1 年前
This is very interesting. Has anyone considered using paths&#x2F;vectors in 2d&#x2F;3d space as data structures?
评论 #39401149 未加载
anon291大约 1 年前
I wonder if this article is related to homotopy type theory at all, since they propose similar ideas.
评论 #39398632 未加载
HackerThemAll大约 1 年前
&gt; So, the expression<p>&gt; 1, 1+1, 2+1, ():set<p>&gt; builds the set with the three elements 1, 2 and 3<p>Regarding the &quot;():set&quot; part, and the &quot;():something&quot; idiom repeating in the article, is that from the same competition for the most absurd syntax where Golang got most of its awkwardness?