Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 22 additions & 8 deletions applications/dmrg/dmrg/dmrg.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,27 @@
#define DMRG_VERSION "1.0.0"
#define DMRG_DATE "2006/10/02"

inline void print_dmrg_copyright(std::ostream& os)
{
os << "ALPS/dmrg version " DMRG_VERSION " (" DMRG_DATE ")\n"
<< " Density Matrix Renormalization Group algorithm\n"
<< " for low-dimensional interacting systems.\n"
<< " available from http://alps.comp-phys.org/\n"
<< " copyright (c) 2006-2013 by Adrian E. Feiguin\n\n"
<< "********************************************************************\n"
<< "* Recommended citation in scientific publications: *\n"
<< "* This code used the ALPS [1] implementation [2] of DMRG [3-6]. *\n"
<< "* [1] JSTAT (2011) P05001; *\n"
<< "* [2] A.E. Feiguin, The Density Matrix Renormalization Group. In: *\n"

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, I checked out the list of citations, and just wanted to ask for two minor clarifications:

Could it be that Ref [2] is not currently listed on the website https://alps.comp-phys.org/documentation/pubs/refs/ ? The DOI of [2] appears to be 10.1007/978-3-642-35106-8_2. Should it be added to the website?

Also, the website lists "M. Dolfi, B. Bauer, S. Keller, A. Kosenkov, T. Ewart, A. Kantian, T. Giamarchi, and M. Troyer, Matrix product state applications for the ALPS project, Comput. Phys. Commun. 185, 3430 (2014).", which doesn't seem to be in this list? Should it be added here?

<< "* Strongly Correlated Systems. Springer Series in Solid-State *\n"
<< "* Sciences, vol 176 (2013) *\n"
<< "* [3] Phys. Rev. Lett. 69, 2863 (1992) *\n"
<< "* [4] Phys. Rev. B 48, 10345 (1993) *\n"
<< "* [5] Rev. Mod. Phys. 77, 259 (2005) *\n"
<< "* [6] Adv. Phys. 55, 477 (2006) *\n"
<< "********************************************************************\n\n";
}

#include <alps/hdf5.hpp>

template<class value_type>
Expand All @@ -51,13 +72,7 @@ class DMRGTask

static void print_copyright(std::ostream& os = std::cout)
{
os << "ALPS/dmrg version " DMRG_VERSION " (" DMRG_DATE ")\n"
<< " Density Matrix Renormalization Group algorithm\n"
<< " for low-dimensional interacting systems.\n"
<< " available from http://alps.comp-phys.org/\n"
<< " copyright (c) 2006-2013 by Adrian E. Feiguin\n"
<< " for details see the publication: \n"
<< " A.F. Albuquerque et al., J. of Magn. and Magn. Materials 310, 1187 (2007).\n\n";
print_dmrg_copyright(os);
}

void save(alps::hdf5::archive &) const;
Expand Down Expand Up @@ -677,4 +692,3 @@ DMRGTask<value_type>::build_bond_operator(alps::BondOperator const& bondop, bond
}



8 changes: 1 addition & 7 deletions applications/dmrg/dmrg/factory.C
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,5 @@ alps::scheduler::Task* DMRGFactory::make_task(const alps::ProcessList& w, const

void DMRGFactory::print_copyright(std::ostream& out) const
{
out << "ALPS/dmrg version " DMRG_VERSION " (" DMRG_DATE ")\n"
<< " Density Matrix Renormalization Group algorithm\n"
<< " for low-dimensional interacting systems.\n"
<< " available from http://alps.comp-phys.org/\n"
<< " copyright (c) 2006-2013 by Adrian E. Feiguin\n"
<< " for details see the publication: \n"
<< " A.F. Albuquerque et al., J. of Magn. and Magn. Materials 310, 1187 (2007).\n\n";
print_dmrg_copyright(out);
}
Loading