Commit 2f2aecc9 authored by Davis King's avatar Davis King

Added overloads for dot() so you can dot() a std::vector with a std::map.

parent 440c6571
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
#include <cmath> #include <cmath>
#include <limits> #include <limits>
#include "../algs.h" #include "../algs.h"
#include <vector>
#include <map>
namespace dlib namespace dlib
...@@ -216,37 +218,67 @@ namespace dlib ...@@ -216,37 +218,67 @@ namespace dlib
// ------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------
template <typename T> namespace impl
typename T::value_type::second_type dot (
const T& a,
const T& b
)
{ {
typedef typename T::value_type::second_type scalar_type; template <typename T, typename U>
typename T::value_type::second_type dot (
const T& a,
const U& b
)
{
typedef typename T::value_type::second_type scalar_type;
typename T::const_iterator ai = a.begin(); typename T::const_iterator ai = a.begin();
typename T::const_iterator bi = b.begin(); typename U::const_iterator bi = b.begin();
scalar_type sum = 0; scalar_type sum = 0;
while (ai != a.end() && bi != b.end()) while (ai != a.end() && bi != b.end())
{
if (ai->first == bi->first)
{
sum += ai->second * bi->second;
++ai;
++bi;
}
else if (ai->first < bi->first)
{ {
++ai; if (ai->first == bi->first)
} {
else sum += ai->second * bi->second;
{ ++ai;
++bi; ++bi;
}
else if (ai->first < bi->first)
{
++ai;
}
else
{
++bi;
}
} }
return sum;
} }
}
return sum; template <typename T>
inline typename T::value_type::second_type dot (
const T& a,
const T& b
)
{
return dlib::sparse_vector::impl::dot(a,b);
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
inline T4 dot (
const std::vector<T1,T2>& a,
const std::map<T3,T4,T5,T6>& b
)
{
return dlib::sparse_vector::impl::dot(a,b);
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
inline T4 dot (
const std::map<T3,T4,T5,T6>& a,
const std::vector<T1,T2>& b
)
{
return dlib::sparse_vector::impl::dot(a,b);
} }
// ------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------
......
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
#include <cmath> #include <cmath>
#include "../algs.h" #include "../algs.h"
#include "../serialize.h" #include "../serialize.h"
#include <map>
#include <vector>
namespace dlib namespace dlib
{ {
...@@ -164,6 +166,30 @@ namespace dlib ...@@ -164,6 +166,30 @@ namespace dlib
- returns the dot product between the vectors a and b - returns the dot product between the vectors a and b
!*/ !*/
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
T4 dot (
const std::vector<T1,T2>& a,
const std::map<T3,T4,T5,T6>& b
);
/*!
requires
- a and b are sparse vectors
ensures
- returns the dot product between the vectors a and b
!*/
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
T4 dot (
const std::map<T3,T4,T5,T6>& a,
const std::vector<T1,T2>& b
);
/*!
requires
- a and b are sparse vectors
ensures
- returns the dot product between the vectors a and b
!*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
template <typename T, typename EXP> template <typename T, typename EXP>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment