This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from deap import gp, base, creator, tools, algorithms | |
import itertools | |
import operator | |
import random | |
import math | |
def converter(value): | |
return value / 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from PyQt5.QtGui import * | |
from PyQt5.QtCore import * | |
from PyQt5.QtQuick import * | |
from PyQt5.QtWidgets import * | |
import sys | |
class Rect(QQuickPaintedItem): | |
def __init__(self, parent=None): |
NewerOlder