This file contains 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
""" When we delete nodes from an .osm using JOSM, the nodes remain in the file marked as deleted. This | |
scripts creates a .txt with the ids of the deleted objects (nodes, ways and relations) to use as input for the function | |
'removeid' from osmium in order to remove them from the file. """ | |
import xml.etree.ElementTree as ET | |
filename = 'path_to_the.osm' | |
osm_tree = ET.parse(filename) | |
root = osm_tree.getroot() | |
with open(f'ids_to_delete.txt', 'w') as f: |
This file contains 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
-- Macros for Photoshop. Button codes belong to a Kolke KTN-101 numercial | |
-- keyboard. By changing the keys of the key_map array, they can be adapted | |
-- to your secondary keyboard. | |
-- clears output | |
clear() | |
-- minimizes to tray | |
lmc_minimize() | |
lmc.minimizeToTray = true; |
This file contains 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
""" | |
Clase Grafo para la materia Investigaci贸n Operativa, del Departamento de Matem谩tica, Facultad de Ciencias Exactas y | |
Naturales, Universidad de Buenos Aires. | |
""" | |
class Grafo: | |
def __init__(self): | |
""" Crea un grafo vac铆o. Representaci贸n de un grafo por lista de adyacencia """ |
This file contains 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
""" Benchmark functions for continuous optimization methods.""" | |
import numpy as np | |
import plotly | |
import plotly.express as px | |
import plotly.graph_objs as go | |
from plotly.offline import init_notebook_mode | |
LIMITS_DICT = {'ackley': (-5, 5, -5, 5), | |
'bukin': (-15, -5, -3, 3), |
This file contains 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
""" | |
Clase Grafo para la materia Investigaci贸n Operativa, del Departamento de Matem谩tica, Facultad de Ciencias Exactas y | |
Naturales, Universidad de Buenos Aires. | |
""" | |
class Grafo: | |
def __init__(self): | |
""" Crea un grafo vac铆o. Representaci贸n de un grafo por lista de adyacencia """ |
This file contains 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
0 [0] 1 | |
1 [0, 1] 0.85 | |
2 [0, 1, 2] 0.6459999999999999 | |
3 [0, 3] 0.84 | |
4 [0, 3, 4] 0.8063999999999999 | |
5 [0, 1, 5] 0.5864999999999999 | |
6 [0, 1, 2, 6] 0.5232600000000001 | |
7 [0, 7] 0.65 | |
8 [0, 1, 2, 6, 8] 0.3505842 | |
9 [0, 3, 9] 0.6132 |
This file contains 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
""" | |
Allows to split a dictionary into chunks of equal size. If the length of the dictionary is not divisible by the chunk | |
size, the last chunk will be smaller. For example, if the length of the dictionary is 10 and the chunk size is 4, | |
then we'll have three chunks: two of size 4 and one of size 2. | |
The first function returns a list with the dictionaries and the second one creates a generator. | |
""" | |
def split_dictionary(input_dict, chunk_size): |
This file contains 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
def int_to_bin(n, length=0): | |
""" | |
Converts an integer to a string of its representation in binary code. | |
:param n: integer to convert | |
:type n: int | |
:param length: desired length of string if the binary representation is shorter than that length. | |
:type length: int | |
:return: binary representation of the integer | |
:rtype: str |