A question about Auslander-Reiten Quivers [closed]
I want to use sagemath to draw some Auslander-Reiten quivers.
But when I use the following command by this site [Auslander-Reiten Quivers]
(https://doc.sagemath.org/html/en/refe...), like
DA = DiGraph([[1, 2], [2, 3]])
AR = DA.auslander_reiten_quiver()
It will say
AttributeError Traceback (most recent call last) /tmp/ipykernel_5300/610482001.py in <module> ----> 1 AR = DA.auslander_reiten_quiver()
AttributeError: 'DiGraph' object has no attribute 'auslander_reiten_quiver'
I do not know how to solve this question since I am not familiar with sagemath. My version of sagemath is $9.5$.
What should I do for this question ?
Thanks!
The Auslander-Reiten quivers functionality was added to Sage just this year. You need Sage version at least 10.3 to use it.
Thanks! I know it.