9 lines
148 B
Python
9 lines
148 B
Python
#!/usr/bin/python
|
|
# -*- coding:utf-8 -*-
|
|
"""
|
|
Implementation of the various integrators for numerical integration.
|
|
"""
|
|
|
|
def leapfrog():
|
|
return 0
|