import numpy as np
import matplotlib.pyplot as plt

from blatt05 import *

# Note how there is no argument that specifies how many steps
# to go in Romberg's method, only a desired accuracy. This is not
# a hard condition (on the accuracy) but merely guidance within
# the limits of Romberg's method within "reasonable bounds" for
# the number of steps.
# Using the arguement maxiter is optional, though at times it is
# helpful as a failsafe catching stray or leaky implementations.
def romberg(a, b, f, eps=10**-15, maxiter=20):
    return 0

if __name__ == "__main__":
    print("Hello, World!")
