This is not a Perl language error.

It belongs to the domain of the app you are using, which you haven't disclosed to us.

I googled the error and landed on the github page of a Python/C project.

Anyway further search revealed that this seems connected to simulation tasks with ever finer grids of cells.

A grid is said to "converge" if results stay roughly the same even with finer grids. More cells mean more computation needed, something one wants to possibly avoid.

Now if you use a grid which is not mutually prime, you are wasting resources, because you are effectively falling back onto an underlying rougher grid available by dividing both dimensions of the grid by a common factor.

I.o.W. you don't wanna see 3x3 tic-tac-toe effects returning on a 9x9 chessboard.

But if the grid was something like 6x7 or 9x11 it's not possible to have a superimposed rougher grid of the same proportion.*

Disclaimer: I'm new to this field, my explanation comes from pure mathematical intuition.

But hey, it's also totally off topic here anyway, so why not guessing :)

Cheers Rolf
(addicted to the Perl Programming Language :)
see Wikisyntax for the Monastery

update

*) improved "same proportion"


In reply to Re: learning about warnings by LanX
in thread learning about warnings by Ivonnita

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.