Distances on Directed Graphs in R
at main 28 lines 707 B view raw
1% Generated by roxygen2: do not edit by hand 2% Please edit documentation in R/cache.R 3\name{dodgr_cache_on} 4\alias{dodgr_cache_on} 5\title{Turn on all dodgr caching in current session.} 6\usage{ 7dodgr_cache_on() 8} 9\value{ 10Nothing; the function invisibly returns \code{TRUE} if successful. 11} 12\description{ 13This will only have an effect after caching has been turned off with 14\link{dodgr_cache_off}. 15} 16\examples{ 17dodgr_cache_on () 18# Then call dodgr functions as usual: 19graph <- weight_streetnet (hampi, wt_profile = "foot") 20} 21\seealso{ 22Other cache: 23\code{\link{clear_dodgr_cache}()}, 24\code{\link{dodgr_cache_off}()}, 25\code{\link{dodgr_load_streetnet}()}, 26\code{\link{dodgr_save_streetnet}()} 27} 28\concept{cache}