15 * You should have received a copy of the GNU General Public License |
15 * You should have received a copy of the GNU General Public License |
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
17 */ |
17 */ |
18 |
18 |
19 #include <QPixmap> |
19 #include <QPixmap> |
20 #include "model.h" |
20 #include "src/model.h" |
21 |
21 |
22 constexpr unsigned int gcd(unsigned int a, unsigned int b) |
22 constexpr unsigned int gcd(unsigned int a, unsigned int b) |
23 { |
23 { |
24 while (a != b) { |
24 while (a != b) { |
25 if (b > a) { |
25 if (b > a) { |