Skip to content

Commit

Permalink
First official release of the code.
Browse files Browse the repository at this point in the history
* Set version number to 1.0.
* gf_* tests have been removed, because their results are too machine-dependent.
* A couple of small updates to the docs.
  • Loading branch information
krivenko committed Mar 19, 2017
1 parent b5b2ad1 commit b54fd3a
Show file tree
Hide file tree
Showing 12 changed files with 8 additions and 204 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(som CXX)
set(CMAKE_BUILD_TYPE Release)

# Version number of the application
set(SOM_VERSION "0.9")
set(SOM_VERSION "1.0")
message(STATUS "Configuring SOM version ${SOM_VERSION}")

# Append triqs installed files to the cmake load path
Expand Down
3 changes: 0 additions & 3 deletions TODO.md

This file was deleted.

7 changes: 7 additions & 0 deletions doc/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@
S.data[:] = 1.0

# Construct a SOM object
#
# Valid observable kinds are 'FermionGf', 'BosonCorr', 'BosonAutoCorr' and 'ZeroTemp'
#
# Expected norms of spectral functions can be passed to the constructor as
# norms = numpy.array([norm_1, norm_2, ..., norm_N]), where N is the matrix
# dimension of g_input (only diagonal elements will be continued). All norms
# are set to 1.0 by default.
cont = Som(g_input, S, kind = "FermionGf")

# Run!
Expand Down
5 changes: 0 additions & 5 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,3 @@ heights.
on the Bayesian statistical inference (MaxEnt) or Padé approximants. Its primary design goal is
the ability to resolve fine spectral features, rather than giving a quick insight into general shape
of the spectrum.*

.. warning::

The code is still of alpha-quality. All its parts are subject to change, including the Python API.
Be critical about obtained results and cross-check with other analytic continuation tools when possible.
1 change: 0 additions & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
add_subdirectory(c++)
add_subdirectory(python)
8 changes: 0 additions & 8 deletions test/python/CMakeLists.txt

This file was deleted.

62 changes: 0 additions & 62 deletions test/python/gf_imfreq.py

This file was deleted.

Binary file removed test/python/gf_imfreq.ref.h5
Binary file not shown.
62 changes: 0 additions & 62 deletions test/python/gf_imtime.py

This file was deleted.

Binary file removed test/python/gf_imtime.ref.h5
Binary file not shown.
62 changes: 0 additions & 62 deletions test/python/gf_legendre.py

This file was deleted.

Binary file removed test/python/gf_legendre.ref.h5
Binary file not shown.

0 comments on commit b54fd3a

Please sign in to comment.