Skip to content

Commit

Permalink
cdec cleanup, remove bayesian stuff, parsing stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Dyer committed Oct 2, 2012
1 parent ea79e53 commit 9250873
Show file tree
Hide file tree
Showing 586 changed files with 13 additions and 125,976 deletions.
45 changes: 0 additions & 45 deletions Jamroot

This file was deleted.

6 changes: 1 addition & 5 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,14 @@ SUBDIRS = \
klm/util \
klm/lm \
decoder \
phrasinator \
training \
training/liblbfgs \
mira \
dtrain \
dpmert \
pro-train \
rampion \
minrisk \
gi/pf \
gi/markov_al \
rst_parser
minrisk

#gi/pyp-topics/src gi/clda/src gi/posterior-regularisation/prjava

Expand Down
23 changes: 0 additions & 23 deletions bjam

This file was deleted.

5 changes: 0 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([utils/Makefile])
AC_CONFIG_FILES([mteval/Makefile])
AC_CONFIG_FILES([decoder/Makefile])
AC_CONFIG_FILES([phrasinator/Makefile])
AC_CONFIG_FILES([training/Makefile])
AC_CONFIG_FILES([training/liblbfgs/Makefile])
AC_CONFIG_FILES([dpmert/Makefile])
Expand All @@ -125,10 +124,6 @@ AC_CONFIG_FILES([klm/util/Makefile])
AC_CONFIG_FILES([klm/lm/Makefile])
AC_CONFIG_FILES([mira/Makefile])
AC_CONFIG_FILES([dtrain/Makefile])
AC_CONFIG_FILES([gi/pyp-topics/src/Makefile])
AC_CONFIG_FILES([gi/clda/src/Makefile])
AC_CONFIG_FILES([gi/pf/Makefile])
AC_CONFIG_FILES([gi/markov_al/Makefile])
AC_CONFIG_FILES([rst_parser/Makefile])

AC_CONFIG_FILES([python/setup.py])
Expand Down
81 changes: 0 additions & 81 deletions decoder/Jamfile

This file was deleted.

2 changes: 1 addition & 1 deletion decoder/decoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ struct CpTime{
#endif

class SentenceMetadata;
struct Hypergraph;
class Hypergraph;
struct DecoderImpl;

struct DecoderObserver {
Expand Down
4 changes: 2 additions & 2 deletions decoder/hg.h
Original file line number Diff line number Diff line change
Expand Up @@ -503,9 +503,9 @@ class Hypergraph {

template <class V>
void visit_edges_topo(V &v) {
for (int i = 0; i < nodes_.size(); ++i) {
for (unsigned i = 0; i < nodes_.size(); ++i) {
EdgesVector const& in=nodes_[i].in_edges_;
for (int j=0;j<in.size();++j) {
for (unsigned j=0;j<in.size();++j) {
int e=in[j];
v(i,e,edges_[e]);
}
Expand Down
32 changes: 0 additions & 32 deletions dpmert/Jamfile

This file was deleted.

6 changes: 0 additions & 6 deletions gi/clda/src/Makefile.am

This file was deleted.

Loading

0 comments on commit 9250873

Please sign in to comment.