Home
9 comments
mjhayover 1 year ago
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://www.algebraicjulia.org/" rel="nofollow">https://www.algebraicjulia.org/</a><p>There's some blog posts that are also interesting:<p><a href="https://blog.algebraicjulia.org/" rel="nofollow">https://blog.algebraicjulia.org/</a>
Verdexover 1 year ago
It feels like the following PDF better expresses what they're trying to accomplish.<p><a href="http://mgs.spatial-computing.org/PUBLICATIONS/lami-RR72--computational-models-for-dynamical-structure.pdf" rel="nofollow">http://mgs.spatial-computing.org/PUBLICATIONS/lami-RR72--com...</a><p>As far as I can tell, they're trying to model things like chemical reactions (and other stuff) where given a bunch of "stuff" in some solution it will combine with other "stuff" if it's in the same topological neighborhood (which I think is basically the idea that ALL of the "stuff" doesn't have to be next to each other b/c if you let a solution just sit there eventually reactions are going to react).<p>It's kind of neat, but their website seems to indicate that it is not being actively supported. Or at the very least they don't seem to have any reason to make publicly available documentation after since around 2010.<p>EDIT: So for example, you could use their "trans" transform primitive to implement conway'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't have to mean physical proximity ... although I'm not sure where that'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's an incredibly concise description of exactly what they'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://www.egison.org/" rel="nofollow">https://www.egison.org/</a><p>However, I don't think that egison allows you to define arbitrary notions of neighbors in a collection like MGS does. But I haven't exactly tried to use it very much.
评论 #39404518 未加载
评论 #39403986 未加载
评论 #39402699 未加载
hackandthinkover 1 year ago
Stephen Wolfram's ruliad seems to be some sort of concurrent topological computations.<p>There are some beautiful pictures.<p><a href="https://content.wolfram.com/sites/43/2021/11/1110swimg46.png" rel="nofollow">https://content.wolfram.com/sites/43/2021/11/1110swimg46.png</a><p><a href="https://writings.stephenwolfram.com/2021/11/the-concept-of-the-ruliad/" rel="nofollow">https://writings.stephenwolfram.com/2021/11/the-concept-of-t...</a>
评论 #39400692 未加载
misja111over 1 year ago
How is this fundamentally different than considering data structures as graphs?
评论 #39396920 未加载
whosthatguyover 1 year ago
> 1. selects a sub-collection B of A whose elements match the path pattern β,<p>> 2. computes a new collection C as a function f of B and its neighbors,<p>> 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://arxiv.org/abs/1408.5809" rel="nofollow">https://arxiv.org/abs/1408.5809</a>).
评论 #39402616 未加载
reuben364over 1 year ago
I'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.
andoandoover 1 year ago
This is very interesting. Has anyone considered using paths/vectors in 2d/3d space as data structures?
评论 #39401149 未加载
anon291over 1 year ago
I wonder if this article is related to homotopy type theory at all, since they propose similar ideas.
评论 #39398632 未加载
HackerThemAllover 1 year ago
> So, the expression<p>> 1, 1+1, 2+1, ():set<p>> builds the set with the three elements 1, 2 and 3<p>Regarding the "():set" part, and the "():something" idiom repeating in the article, is that from the same competition for the most absurd syntax where Golang got most of its awkwardness?