File: Consistency.h

package info (click to toggle)
proda 1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 332 kB
  • ctags: 382
  • sloc: cpp: 4,415; xml: 163; makefile: 30
file content (16 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//////////////////////////////////////////////////////////////////////
// Consistency.h
//
// Routines for probabilistic consistency.
//////////////////////////////////////////////////////////////////////

#ifndef CONSISTENCY_H
#define CONSISTENCY_H

#include "SparseMatrix.h"
#include "Matrix.h"

void AccumulateConsistencyInfo (const SparseMatrix **posteriors, Matrix &p, int x, int y, int z, int n);
SparseMatrix **ProbabilisticConsistency (SparseMatrix **posteriors, int n);

#endif