File size: 298 Bytes
158b61b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#pragma once
#include "moses/Syntax/F2S/Forest.h"
#include "InputTree.h"
namespace Moses
{
namespace Syntax
{
namespace T2S
{
// Constructs a F2S::Forest given a T2S::InputTree.
const F2S::Forest::Vertex *InputTreeToForest(const InputTree &, F2S::Forest &);
} // T2S
} // Syntax
} // Moses
|