Skip to content
This repository has been archived by the owner on May 8, 2018. It is now read-only.

Commit

Permalink
took away diffusion orientation bias
Browse files Browse the repository at this point in the history
  • Loading branch information
songqian2002 committed Nov 27, 2017
1 parent 18cd7f0 commit a3554ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ble-cpp/src/model/PoseRandomWalker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace loc{

// Perturb variables in State
if(nSteps>0 || mProperty->doesUpdateWhenStopping() ){
state.orientationBias(state.orientationBias() + stateProperty->diffusionOrientationBias()*randomGenerator.nextGaussian()*dTime );
state.orientationBias(state.orientationBias()); // + stateProperty->diffusionOrientationBias()*randomGenerator.nextGaussian()*dTime // removed by Chris
state.rssiBias(randomGenerator.nextTruncatedGaussian(state.rssiBias(),
stateProperty->diffusionRssiBias()*dTime,
stateProperty->minRssiBias(),
Expand Down
4 changes: 2 additions & 2 deletions bleloc.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "bleloc"
s.version = "2.0.7-Chris"
s.version = "2.0.8-Chris"
s.summary = "Localization library"
s.homepage = "https://github.com/realCabot/"
s.description = <<-DESC
Expand All @@ -9,7 +9,7 @@ This is a localization library for bluetooth le beacons.

s.license = "MIT"
s.author = "realCabot"
s.source = { :http => "http://github.com/RealCabot/blelocpp/releases/download/2.0.7-Chris/bleloc.framework.zip" }
s.source = { :http => "http://github.com/RealCabot/blelocpp/releases/download/2.0.8-Chris/bleloc.framework.zip" }
s.preserve_path = "bleloc.framework"
s.vendored_frameworks = "bleloc.framework"
s.platforms = {:ios => "8.4"}
Expand Down

0 comments on commit a3554ef

Please sign in to comment.